-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (50 loc) · 1.59 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import hek_pool
long_desc = ""
try:
long_desc = open("README.txt").read()
except Exception:
print("Couldn't read readme.")
setup(
name='hek_pool',
#description='',
long_description=long_desc,
long_description_content_type='text/markdown',
version='%s.%s.%s' % hek_pool.__version__,
url=hek_pool.__website__,
author=hek_pool.__author__,
author_email='MoeMakesStuff@gmail.com',
license='MIT',
packages=[
'hek_pool',
],
package_data={
'hek_pool': [
# TODO: Is cmd_lists properly included like this?
'cmd_lists/*.txt', 'ogg_v1.1.2_dll_fix.zip', '*.txt',
'*.[mM][dD]', '*.rst', '*.pyw', '*.ico', '*.png', 'msg.dat',
],
},
platforms=["POSIX", "Windows"],
#keywords="",
install_requires=['supyr_struct', 'threadsafe_tkinter', 'mozzarilla'],
requires=['supyr_struct', 'threadsafe_tkinter', 'mozzarilla'],
provides=['hek_pool'],
classifiers=[
"Development Status :: 4 - Beta",
"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 :: Only",
],
zip_safe=False,
)