-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
68 lines (61 loc) · 2.07 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
from setuptools import setup
import os.path
import sys
ver = "0.0.1"
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
#This is a list of files to install, and where
#(relative to the 'root' dir, where setup.py is)
#You could be more specific.
files = ["pylibcerebrum/*"]
requires=['mako',
]
if sys.version_info < (3,3):
requires.append('pylzma')
elif sys.version_info <(2,6):
print("Oops, only python > 2.6 and >= 3.0 supported!")
sys.exit()
setup(name = "pylibcerebrum",
version = ver,
description = "Python Library for cerebrum systems",
license = "unknown",
author = "jaseg",
url = "https://github.com/jaseg/cerebrum",
packages = ['pylibcerebrum',
],
package_data = {'pylibcerebrum': ['pylibcerebrum']},
scripts = ['runtests.py',
'build.py',
'generator.py'],
entry_points="""
""",
install_requires=requires,
zip_safe = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.0',
'Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Home Automation',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: System :: Networking'
],
#package_data = {'package' : files },
#scripts = [""], # None yet
long_description = read('README.md'),
# Dependencies
#
# Note: Those are proven to work, older versions might work,
# but have never been tested.
#
dependency_links = [],
)