forked from simonpercivall/astunparse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·84 lines (77 loc) · 3.09 KB
/
setup.py
File metadata and controls
executable file
·84 lines (77 loc) · 3.09 KB
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
78
79
80
81
82
83
84
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
import re
from setuptools import setup, find_packages
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
def read_reqs(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
return [line for line in f.read().split('\n') if line and not line.strip().startswith('#')]
tests_require = [] # mostly handled by tox
if sys.version_info < (2, 7):
tests_require.append("unittest2 == 0.5.1") # except this
def read_version():
with open(os.path.join('lib', 'astunparse', '__init__.py')) as f:
m = re.search(r'''__version__\s*=\s*['"]([^'"]*)['"]''', f.read())
if m:
return m.group(1)
raise ValueError("couldn't find version")
setup(
name='astunparse-aiandit',
version=read_version(),
description='An AST unparser for Python (AI&IT fork)',
long_description=readme + '\n\n' + history,
maintainer='Simon Percivall',
maintainer_email='jwillkomm@ai-and-it.de',
url='https://github.com/aiandit/astunparse',
project_urls={
'AI&IT Home': 'https://ai-and-it.de',
'Original Project': 'https://github.com/simonpercivall/astunparse',
},
packages=find_packages('lib'),
package_dir={'': 'lib'},
include_package_data=True,
package_data={'astunparse': ['xsl/xml2json.xsl']},
install_requires=read_reqs('requirements.txt'),
entry_points={
'console_scripts': [
# master entry point, includes the following as subcommands
'astunparse=astunparse.__main__:run',
# the following shortcuts are optional, can also be called via astunparse
'py2py=astunparse.cmdline:unparse2pyrun',
'pydump=astunparse.cmdline:pydumprun',
'py2json=astunparse.cmdline:unparse2jrun',
'json2py=astunparse.cmdline:loadastjrun',
'json2xml=astunparse.cmdline:json2xmlrun',
'xml2json=astunparse.cmdline:xml2jsonrun',
'py2xml=astunparse.cmdline:unparse2xrun',
'xml2py=astunparse.cmdline:loadastxrun',
'py2json2xml=astunparse.cmdline:py2json2xmlrun'
]
},
license="BSD",
zip_safe=False,
keywords='astunparse',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Software Development :: Code Generators',
],
test_suite='tests',
tests_require=tests_require,
)