-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
46 lines (42 loc) · 1.54 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
# All rights reserved.
from os.path import join
from setuptools import setup, find_packages
info = {}
execfile(join('mapping', '__init__.py'), info)
setup(
name = 'mapping',
version = info['__version__'],
author = 'Enthought, Inc.',
author_email = '[email protected]',
maintainer = 'ETS Developers',
maintainer_email = '[email protected]',
#url = 'https://github.com/enthought/enable-mapping',
#download_url = ('http://www.enthought.com/repo/ets/enable-mapping-%s.tar.gz' %
# info['__version__']),
classifiers = [c.strip() for c in """\
Development Status :: 5 - Production/Stable
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 = 'application tools',
long_description = open('README.rst').read(),
include_package_data = True,
package_data = {
'mapping.enable': ['fonts/*']
},
install_requires = info['__requires__'],
license = 'BSD',
packages = find_packages(),
platforms = ["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
zip_safe = True,
)