-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (43 loc) · 1019 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from setuptools import setup, find_packages
from clausewitz import __version__
requirements = [
'cached-property',
'returns-decorator',
]
extra_test = [
'flake8',
'flake8-commas',
'flake8-print',
'flake8-quotes',
'pytest>=4',
'pytest-runner>=4',
'pytest-cov>=2',
]
extra_dev = extra_test
extra_ci = extra_test + [
'coverage==4.*',
'python-coveralls',
]
setup(
name='pypdx-clausewitz',
version=__version__,
python_requires='>=3.6',
install_requires=requirements,
extras_require={
'test': extra_test,
'dev': extra_dev,
'ci': extra_ci,
},
packages=find_packages(),
entry_points={
'console_scripts': [
'tokenize-prepare=clausewitz.util.tokenize:prepare_cmd',
'pdx-jsonify=clausewitz.parse:parse_cmd',
],
},
url='https://github.com/PyPDX/clausewitz',
license='PyPDX',
author='PyPDX',
author_email='[email protected]',
description='',
)