-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
74 lines (70 loc) · 2.21 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
71
72
73
74
#!/usr/bin/env python
#
# This file is part of Refinery.
#
# For authors and copyright check AUTHORS.TXT
#
# Refinery is free software under the GNU General Public License v3.0.
# See LICENSE for more information.
#
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import refinery
long_desc = ""
try:
long_desc = open("README.MD").read()
except Exception:
print("Couldn't read readme.")
setup(
name='refinery',
description='A map extractor for games built with the Blam engine',
long_description=long_desc,
long_description_content_type='text/markdown',
version='%s.%s.%s' % refinery.__version__,
url=refinery.__website__,
project_urls={
#"Documentation": <Need a string entry here>,
"Source": refinery.__website__,
"Funding": "https://liberapay.com/MEK/",
},
author=refinery.__author__,
author_email='[email protected]',
license='GPLv3',
packages=[
'refinery',
'refinery.defs',
'refinery.heuristic_deprotection',
'refinery.repl',
'refinery.tag_index',
'refinery.widgets',
'refinery.windows',
],
package_data={
'refinery': [
'styles/*.*', '*.[tT][xX][tT]', '*.MD', '*.pyw', '*.ico', '*.png',
'LICENSE',
]
},
platforms=['POSIX', 'Windows'],
keywords=["refinery", "halo", "extraction"],
install_requires=['mozzarilla', 'supyr_struct', 'reclaimer', 'binilla'],
requires=['mozzarilla', 'supyr_struct', 'reclaimer', 'binilla'],
provides=['refinery'],
python_requires=">=3.6",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
],
zip_safe=False,
)