-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
52 lines (47 loc) · 1.24 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
from setuptools import setup
setup(
name='openreview-py',
version='1.44.3',
description='OpenReview API Python client library',
url='https://github.com/openreview/openreview-py',
author='OpenReview Team',
author_email='[email protected]',
license='MIT',
package_dir = {
'openreview': 'openreview',
'openreview.api': 'openreview/api'
},
packages=[
'openreview',
'openreview/conference',
'openreview/profile',
'openreview/agora',
'openreview/venue',
'openreview/venue/configuration',
'openreview/venue_request',
'openreview/journal',
'openreview/journal/journal_request',
'openreview/stages',
'openreview/arr',
'openreview.api'
],
python_requires='<3.12',
install_requires=[
'pycryptodome',
'requests>=2.18.4',
'future',
'tqdm',
'Deprecated',
'pylatexenc',
'tld>=0.12',
'setuptools==65.5.1',
'pyjwt'
],
extras_require={
'docs': ['nbsphinx', 'sphinx', 'sphinx_rtd_theme', 'nbformat']
},
classifiers=[
'Programming Language :: Python :: 3'
],
zip_safe=False,
include_package_data=True)