-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (41 loc) · 1.29 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
import setuptools
app_name = "steamscraper"
with open("README.md") as fp:
long_description = fp.read()
main_ns = {}
ver_path = setuptools.convert_path(f'{app_name}/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setuptools.setup(
name=app_name,
version=main_ns['__version__'],
description="Extract all subscribed Steam Workshop mods for Ark Survival Evolved",
long_description=long_description,
long_description_content_type="text/markdown",
author="Michael Hoffmann",
author_email="[email protected]",
packages=setuptools.find_packages(),
install_requires=[
'bs4',
'steam',
],
entry_points={
'console_scripts':
[
f'{app_name}={app_name}.main:main'
]
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Gamers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Utilities",
"Typing :: Typed",
],
)