-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.25 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.25 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
"""autochomsky setup.py."""
from setuptools import setup, find_packages
try:
from pip._internal.req import parse_requirements
except ImportError:
from pip.req import parse_requirements
install_reqs = parse_requirements('requirements.txt', session=False)
try:
reqs = [str(ir.req) for ir in install_reqs]
except AttributeError:
reqs = [str(ir.requirement) for ir in install_reqs]
setup(
name='autochomsky',
version='1.0.6',
packages=find_packages(),
scripts=[],
# zip_safe=True,
# eager_resources=[],
install_requires=reqs,
# dependency_links=[],
# namespace_packages=[],
include_package_data=True,
# exclude_package_data=True,
package_data={
'': ['*.txt', '*.rst', '*.md'],
},
# entry_points={},
# extras_require={},
# setup_requires=[],
# use_2to3=True,
# convert_2to3_doctests=[],
# use_2to3_fixers=[],
author='OpenStax QA',
author_email='greg@openstax.org',
description='Chomsky phrase generator',
license='Creative Commons Attribution 4.0 International Public License',
keywords='',
url='https://github.com/gregfitch/autochomsky',
long_description=open('README.md').read(),
# test_suite=''
# tests_require=[],
# test_loader='',
)