This repository has been archived by the owner on Sep 17, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
70 lines (69 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
from setuptools import setup
setup(
name="wow_addon_updater",
version="v1.7.1",
description=(
"This utility provides an alternative to the Twitch/Curse "
"client for management and updating of addons for World of Warcraft. "
),
author="Garrett Edwards",
url="https://github.com/grrttedwards/wow-addon-manager",
license="GPLv3",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
packages=["updater", "updater.manager", "updater.site"],
entry_points={"console_scripts": ["wow-addon-updater = updater.__main__:main"],},
extras_require={
"dev": [
"appdirs==1.4.4",
"attrs==21.2.0",
"black==19.10b0; python_version >= '3.6'",
"cached-property==1.5.2",
"cerberus==1.3.4",
"certifi==2021.5.30",
"chardet==4.0.0",
"click==8.0.1",
"colorama==0.4.4",
"coverage==5.5",
"distlib==0.3.2",
"idna==2.10",
"orderedmultidict==1.0.1",
"packaging==20.9",
"pathspec==0.8.1",
"pep517==0.10.0",
"pip-shims==0.5.3",
"pipenv-setup==3.1.1",
"pipfile==0.0.2",
"plette[validation]==0.2.3",
"pyparsing==2.4.7",
"python-dateutil==2.8.1",
"regex==2021.4.4",
"requests==2.25.1",
"requirementslib==1.5.16",
"six==1.16.0",
"toml==0.10.2",
"tomlkit==0.7.2",
"typed-ast==1.4.3",
"urllib3==1.26.5",
"vistir==0.5.2",
"wheel==0.36.2",
]
},
install_requires=[
"beautifulsoup4==4.9.3",
"certifi==2021.5.30",
"chardet==4.0.0",
"cloudscraper==1.2.58",
"idna==2.10",
"pyparsing==2.4.7",
"requests==2.25.1",
"requests-toolbelt==0.9.1",
"soupsieve==2.2.1; python_version >= '3.0'",
"urllib3==1.26.5",
],
python_requires=">=3.8.0",
)