-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (21 loc) · 829 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
from setuptools import setup
setup(
name = 'iAST',
version = '0.2.1',
url = 'https://github.com/brandjon/iast',
author = 'Jon Brandvein',
author_email = '[email protected]',
license = 'MIT License',
description = 'A library for defining and manipulating ASTs',
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = ['iast', 'iast.asdl', 'iast.python'],
package_data = {'iast.asdl': ['*.asdl']},
test_suite = 'tests',
install_requires = ['simplestruct >=0.2.1'],
)