-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
65 lines (62 loc) · 1.97 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import binilla
long_desc = ""
try:
long_desc = open("README.MD").read()
except Exception:
print("Couldn't read readme.")
setup(
name='binilla',
description='A universal binary structure editor built on supyr_struct.',
long_description=long_desc,
long_description_content_type='text/markdown',
version='%s.%s.%s' % binilla.__version__,
url=binilla.__website__,
project_urls={
#"Documentation": <Need a string entry here>,
"Source": binilla.__website__,
#"Funding": "",
},
author=binilla.__author__,
author_email='[email protected]',
license='MIT',
packages=[
'binilla',
'binilla.defs',
'binilla.widgets',
'binilla.widgets.field_widgets',
'binilla.windows',
],
package_data={
'binilla': [
'styles/*.*', '*.[tT][xX][tT]', '*.[mM][dD]', '*.RST', '*.pyw'
]
},
platforms=["POSIX", "Windows"],
keywords="binilla, binary, data structure",
install_requires=['supyr_struct', 'threadsafe_tkinter>=1.0.4', 'tkcolorpicker'],
requires=['supyr_struct', 'threadsafe_tkinter', 'tkcolorpicker'],
extras_require={
'bitmap_viewing': ['arbytmap']
},
provides=['binilla'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"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,
)