forked from openreview/openreview-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 796 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
from setuptools import setup
setup(name='openreview-py',
version='0.9.9',
description='OpenReview client library',
url='https://github.com/iesl/openreview-py',
author='Michael Spector, Melisa Bok, Pam Mander, Mohit Uniyal',
license='MIT',
packages=[
'openreview',
'openreview/conference',
'openreview/invitations'
],
install_requires=[
'pycryptodome',
'requests>=2.18.4',
'future',
'nbsphinx',
'tqdm'
],
extras_require={
'develop': ["sphinx", "sphinx_rtd_theme", "nbformat"]
},
zip_safe=False,
include_package_data=True)