-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (32 loc) · 984 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
def readdoc():
f = open('README.rst', 'rb')
data = f.read()
f.close()
return data
setup(
name='astor',
version='0.2.1',
description='Read/rewrite/write Python ASTs',
long_description=readdoc(),
author='Patrick Maupin',
author_email='[email protected]',
platforms="Independent",
url='https://github.com/pmaupin/astor.git',
packages=['astor'],
license="BSD",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Compilers',
],
keywords='ast',
)