-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
39 lines (32 loc) · 1.41 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
"""Setup script for horast package."""
import setup_boilerplate
class Package(setup_boilerplate.Package):
"""Package metadata."""
name = 'horast'
description = 'human-oriented ast parser/unparser'
url = 'https://github.com/mbdevpl/horast'
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Education',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Code Generators',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Pre-processors',
'Topic :: Utilities']
keywords = ['abstract syntax tree', 'ast', 'comments', 'directives', 'parsing', 'readability',
'type hints', 'unparsing']
if __name__ == '__main__':
Package.setup()