-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (56 loc) · 1.36 KB
/
pyproject.toml
File metadata and controls
62 lines (56 loc) · 1.36 KB
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
60
61
62
[build-system]
requires = ["setuptools>=65.5.1,<81", "wheel>=0.40,<1"]
build-backend = "setuptools.build_meta"
[project]
name = "openreview-py"
version = "2.2.0"
description = "OpenReview API Python client library"
authors = [{name = "OpenReview Team", email = "info@openreview.net"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"pycryptodome>=3.20,<4",
"requests>=2.18.4,<3",
"future>=1.0.0,<2",
"tqdm>=4.60,<5",
"Deprecated>=1.2.0,<2",
"pylatexenc>=2.10,<3",
"tld>=0.12,<1",
"pyjwt>=2.0,<3",
"editdistance>=0.8.1,<1"
]
[project.urls]
Homepage = "https://github.com/openreview/openreview-py"
[project.optional-dependencies]
docs = [
"nbsphinx>=0.9,<1",
"sphinx>=7.0,<10",
"sphinx_rtd_theme>=3.0,<4",
"nbformat>=5.7,<6"
]
test = [
"pytest>=9.0,<10",
"py>=1.11,<2",
"pyotp>=2.9,<3",
"selenium>=4.0,<5",
"pytest-selenium>=4.0,<5",
"pytest-cov>=7.0,<8"
]
[tool.setuptools.package-data]
"openreview" = ["*"]
[tool.setuptools.packages.find]
include = [
"openreview",
"openreview.conference",
"openreview.profile",
"openreview.agora",
"openreview.venue",
"openreview.venue_request",
"openreview.journal",
"openreview.journal.journal_request",
"openreview.stages",
"openreview.arr",
"openreview.api",
"openreview.workflows"
]