-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
76 lines (67 loc) · 2.06 KB
/
pyproject.toml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cik-benchmark"
description = "Context is Key: A Benchmark for Forecasting with Essential Textual Information"
readme = "README.md"
requires-python = ">3.9"
license = {text = "Apache-2.0"}
authors = [
{name = "Andrew Robert Williams"},
{name = "Arjun Ashok"},
{name = "Étienne Marcotte"},
{name = "Valentina Zantedeschi"},
{name = "Jithendaraa Subramanian"},
{name = "Roland Riachi"},
{name = "James Requeima"},
{name = "Alexandre Lacoste"},
{name = "Irina Rish"},
{name = "Nicolas Chapados"},
{name = "Alexandre Drouin"},
]
maintainers = [
{name = "Andrew Robert Williams", email = "[email protected]"},
{name = "Arjun Ashok", email = "[email protected]"},
{name = "Alexandre Drouin", email = "[email protected]"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["dependencies", "optional-dependencies", "version"]
[project.urls]
homepage = "https://github.com/ServiceNow/context-is-key-forecasting/"
[tool.setuptools]
packages = { find = { where = ["."] } }
include-package-data = true
[tool.setuptools.package-data]
"benchmark.data.dominicks" = ["*.json"]
[tool.setuptools.dynamic]
version = {attr = "cik_benchmark.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {dev = { file = ["requirements-dev.txt"] }, r = { file = ["requirements-r.txt"] }}
[tool.black]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''