-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
77 lines (60 loc) · 2.41 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
77
#!/usr/bin/env python
import sys
from distutils.core import setup
setup_args = {}
#############################################################################################
##### CEBALERT: copied from topographica; should be simplified
required = {'param':">=0.0.1",
'PIL':">=1.1.6"}
packages_to_install = [required]
packages_to_state = [required]
setup_args = {}
if 'setuptools' in sys.modules:
# support easy_install without depending on setuptools
install_requires = []
for package_list in packages_to_install:
install_requires+=["%s%s"%(package,version) for package,version in package_list.items()]
setup_args['install_requires']=install_requires
setup_args['dependency_links']=["http://pypi.python.org/simple/"]
setup_args['zip_safe']=False # CEBALERT: haven't checked for paramtk
for package_list in packages_to_state:
requires = []
requires+=["%s (%s)"%(package,version) for package,version in package_list.items()]
setup_args['requires']=requires
#############################################################################################
setup_args.update(dict(
name='paramtk',
version='0.8',
description='Optional Tkinter interface for Param',
long_description=open('README.rst').read(),
author= "IOAM",
author_email= "[email protected]",
maintainer= "IOAM",
maintainer_email= "[email protected]",
platforms=['Windows', 'Mac OS X', 'Linux'],
license='BSD',
url='http://ioam.github.com/paramtk/',
packages = ["paramtk"],
package_data={
# CB: These things are not data, but there's currently no
# other mechanism in distutils/setuptools.
'paramtk': ['tcl/snit-2.2.1/*.tcl',
'tcl/scrodget-2.1/*.tcl',
'tcl/tooltip-1.4/*.tcl'],
},
classifiers = [
"License :: OSI Approved :: BSD License",
# (until packaging tested)
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries"]
))
if __name__=="__main__":
setup(**setup_args)