-
Notifications
You must be signed in to change notification settings - Fork 755
/
setup.cfg
41 lines (35 loc) · 964 Bytes
/
setup.cfg
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
[metadata]
name = gluonts
version = attr: gluonts.__version__
url = https://github.com/awslabs/gluonts/
project_urls =
Documentation = https://ts.gluon.ai/stable/
Source Code = https://github.com/awslabs/gluonts/
license = Apache License 2.0
license_file = LICENSE
author = Amazon
author_email = [email protected]
maintainer_email = [email protected]
description = Probabilistic time series modeling in Python.
long_description = file: README.md
long_description_content_type = text/markdown
[options]
python_requires = >= 3.7
packages = find_namespace:
package_dir = = src
include_package_data = True
[options.packages.find]
where = src
include = gluonts*
[options.entry_points]
pygments.styles =
gluonts-dark = gluonts.meta.style:Dark
[aliases]
test = pytest --addopts --cov=src/gluonts
tests = pytest --addopts --cov=src/gluonts
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[mypy]
plugins = pydantic.mypy