-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
75 lines (71 loc) · 2.31 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
75
#!/usr/bin/env python
#
# This file is part of Mozzarilla.
#
# For authors and copyright check AUTHORS.TXT
#
# Mozzarilla 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 mozzarilla
long_desc = ""
try:
long_desc = open("README.MD").read()
except Exception:
print("Couldn't read readme.")
setup(
name='mozzarilla',
description='A variant of Binilla for editing binary structures for '
'games built with the Blam engine.',
long_description=long_desc,
long_description_content_type='text/markdown',
version='%s.%s.%s' % mozzarilla.__version__,
url=mozzarilla.__website__,
project_urls={
#"Documentation": <Need a string entry here>,
"Source": mozzarilla.__website__,
"Funding": "https://liberapay.com/MEK/",
},
author=mozzarilla.__author__,
author_email='[email protected]',
license='GPLv3',
packages=[
'mozzarilla',
'mozzarilla.defs',
'mozzarilla.widgets',
'mozzarilla.widgets.field_widgets',
'mozzarilla.windows',
'mozzarilla.windows.tools',
'mozzarilla.windows.tag_converters',
],
package_data={
'mozzarilla': [
'styles/*.*', '*.[tT][xX][tT]', '*.MD', '*.pyw', '*.ico', '*.png',
'msg.dat','LICENSE',
]
},
platforms=["POSIX", "Windows"],
keywords=["binilla", "binary", "data structure"],
install_requires=['reclaimer', 'binilla', 'arbytmap', 'supyr_struct'],
requires=['reclaimer', 'arbytmap', 'binilla'],
provides=['mozzarilla'],
python_requires=">=3.5",
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,
)