forked from srossross/Meta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (45 loc) · 1.6 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
# Copyright (c) 2008-2011 by Enthought, Inc.
# All rights reserved.
from setuptools import setup, find_packages
try:
long_description = open('README.rst').read()
except IOError as err:
long_description = str(err)
try:
version_str = open('version.txt').read().strip()
except IOError as err:
version_str = '???'
setup(
name='meta',
version=version_str,
author='Sean Ross-Ross, Enthought Inc.',
author_email='[email protected]',
maintainer='Sean Ross-Ross',
maintainer_email='[email protected]',
url='http://srossross.github.com/Meta',
classifiers=[c.strip() for c in """\
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
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='Byte-code and ast programming tools',
long_description=long_description,
include_package_data=True,
license='BSD',
packages=find_packages(),
platforms=["Windows", "Linux", "Mac OS-X", "Unix", "Solaris"],
entry_points={
'console_scripts': [
'depyc = meta.scripts.depyc:main',
],
}
)