-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
51 lines (46 loc) · 1.66 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
# Copyright (c) 2008-2012 by Enthought, Inc.
# All rights reserved.
import sys
from setuptools import setup
setup_data = {}
execfile('setup_data.py', setup_data)
INFO = setup_data['INFO']
if 'develop' in sys.argv:
INFO['install_requires'] = []
# The actual setup call.
setup(
name = 'ets',
version = INFO['version'],
author = 'Enthought, Inc.',
download_url = ('http://www.enthought.com/repo/ets/ets-%s.tar.gz' %
INFO['version']),
author_email = 'info@enthought.com',
classifiers = [c.strip() for c in """\
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: OS Independent
Operating System :: POSIX
Operating System :: Unix
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development
Topic :: Software Development :: Libraries
""".splitlines() if len(c.strip()) > 0],
description = 'Enthought Tool Suite meta-project',
long_description = open('README.rst').read(),
install_requires = INFO['install_requires'],
license = 'BSD',
maintainer = 'ETS Developers',
maintainer_email = 'enthought-dev@enthought.com',
py_modules = ["ets", "ets_docs"],
entry_points = dict(console_scripts=[
"ets = ets:main",
"ets-docs = ets_docs:main",
]),
platforms = ["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
url = 'http://code.enthought.com/projects/tool-suite.php',
)