-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
from setuptools import setup
import scratchtrend
NAME = "scratchtrend"
DESCRIPTION = "ScratchTrend: Get Popular Projects from scratch"
AUTHOR = "ujex_256(henji243)"
URL = "https://github.com/henji243/ScratchTrend"
LICENSE = "MIT"
VERSION = scratchtrend.__version__
with open("README.md", "r", encoding="utf-8") as f:
readme = f.read()
PYTHON_REQUIRES = ">=3.6"
INSTALL_REQUIRES = [
"selenium>=4.3.0",
"beautifulsoup4>=4.10.0",
]
EXTRAS_REQUIRE = ["chromedriver-binary>=100.0.4896.20.0"]
PACKAGES = ["scratchtrend"]
CLASSIFIERS = [
"License :: OSI Approved :: MIT License",
"Natural Language :: Japanese",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet",
]
setup(
name=NAME,
version=VERSION,
license=LICENSE,
author=AUTHOR,
maintainer=AUTHOR,
description=DESCRIPTION,
long_description=readme,
long_description_content_type="text/markdown",
url=URL,
download_url=URL,
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES,
packages=PACKAGES,
classifiers=CLASSIFIERS
)