-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
76 lines (53 loc) · 2.08 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
76
#!python3.3
# -*- coding: utf-8 -*-
#from distutils.core import setup
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
import sys
import os
DISTUTILS_DEBUG = True
py_version = sys.version_info[:2]
PY3 = py_version[0] == 3
if not PY3:
raise RuntimeError('Python 3.x is required')
thisdir = os.path.dirname(__file__)
with open(os.path.join(thisdir, 'README.md')) as file:
long_description = file.read()
setup(name = 'pyHexa',
version = '0.0.3', # major.minor.revision
platforms = ['Linux', 'Windows'],
url = 'https://github.com/Rod-Persky/pyHexa',
classifiers = [
'Development Status :: 3 - Alpha',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Academic Free License (AFL)',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Environment :: No Input/Output (Daemon)', # No IO required
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: OS Independent',
],
description = 'Python Hexapod WEB UI',
long_description = long_description,
license = 'Academic Free License ("AFL") v. 3.0',
author = 'Rodney Persky',
author_email = '[email protected]',
packages = find_packages('pyHexa'),
package_dir = {'pyHexa': 'pyHexa'},
zip_safe = True,
include_package_data = True,
py_modules = ['ez_setup'],
install_requires=['bottle>=0.11.5',
'cherrypy>=3.2.4'],
)