-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (18 loc) · 778 Bytes
/
setup.py
File metadata and controls
22 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
def find_requirements():
with open("requirements.txt") as _in:
required = [x.strip() for x in _in.read().splitlines()]
return [x for x in required if x.strip() and not x.strip().startswith("#")]
setup(name='crowdai',
version='1.0.22',
description='Python client to interact with CrowdAI Grading Server.',
url='https://github.com/spMohanty/crowdai-client-py',
download_url='https://github.com/spMohanty/crowdai-client-py',
author='S.P. Mohanty',
author_email='sharada.mohanty@epfl.ch',
license='GPLv3',
packages=['crowdai', 'crowdai.challenges'],
install_requires=find_requirements(),
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)