-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (42 loc) · 1.1 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
40
41
42
from setuptools import setup, find_packages
install_requires = [
'click>=6.7',
'pandas>=0.23.0',
'flask>=1.0.0',
'flask-Cors>=3.0.7',
'flask-SocketIO>=3.3.2',
'eventlet>=0.24.1',
'gunicorn>=19.9.0'
]
dev_requires = [
'coverage>=4.4.1',
'flake8>=3.3.0',
'pytest>=3.0.7',
'pytest-mock>=1.6.0',
'pytest-cov>=2.5.1',
'pip-tools>=1.10.1',
'hypothesis>=3.4.5',
]
setup(
name='bipolar-ABA',
version='0.0.1',
url='[email protected]:AminKaram/FYP',
author='Amin Karamlou',
author_email='[email protected]',
description='An implementation of the Bipolar-ABA argumentation framework.',
license='MIT',
packages=find_packages(),
include_package_data=True,
platforms='any',
install_requires=install_requires,
setup_requires=['pytest-runner'],
tests_require=dev_requires,
extras_require={
'dev': dev_requires,
},
entry_points = '''
[console_scripts]
bipolar-ABA-solver-generate-extensions=src.cli:generate_extensions
bipolar-ABA-solver-generate-explanations=src.cli:generate_explanations
''',
)