-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (33 loc) · 957 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
36
37
38
39
40
from setuptools import setup
# Load __version__ without importing it (avoids race condition with build)
exec(open('terseparse/version.py').read())
test_deps = [
'pytest'
]
extras = {
'test': test_deps
}
setup(name='terseparse',
description='A minimal boilerplate, composeable wrapper for argument parsing',
packages=['terseparse'],
version=__version__,
url='https://github.com/jthacker/terseparse',
download_url='https://github.com/jthacker/terseparse/archive/v{}.tar.gz'.format(__version__),
author='jthacker',
author_email='thacker.jon@gmail.com',
keywords=['argument', 'parsing'],
classifiers=[],
install_requires=[
'six >= 1.16'
],
tests_require=test_deps,
setup_requires=[
'pytest-runner'
],
extras_require=extras,
long_description="""
How to Install
--------------
.. code:: bash
pip install terseparse
""")