forked from Cloud-CV/evalai-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (43 loc) · 1.16 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import io
from setuptools import setup, find_packages
PROJECT = 'evalai'
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name=PROJECT,
version='1.0.16',
description='Use EvalAI through the CLI!',
long_description=long_description,
long_description_content_type='text/markdown',
author='Cloud-CV',
author_email='[email protected]',
url='https://github.com/Cloud-CV/evalai_cli ',
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
platforms=['Any'],
scripts=[],
provides=[],
install_requires=[
'beautifulsoup4==4.6.0',
'beautifultable==0.5.0',
'click==6.7',
'lxml==4.2.1',
'python-dateutil==2.7.3',
'requests==2.18.4',
'responses==0.9.0',
'validators==0.12.2',
],
namespace_packages=[],
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'evalai=evalai.main:main',
],
},
zip_safe=False,
)