-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 1.14 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name="lightningnbeats"
version="0.1.1"
authors =[{name="Daniel Byrne",email="[email protected]"}]
description = "A Pytorch Lightning implementation of the N-BEATS algorithm with some extended functionality."
requires-python=">=3.9.0"
classifiers=[
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
dependencies = [
"lightning",
"matplotlib",
"numpy",
"pandas",
"pytorch_lightning",
"PyWavelets",
"scipy",
"seaborn",
"tensorboard",
"torch",
"tqdm",
"ipykernel",
"ipython",
"statsmodels"
]
dynamic = ["readme"]
[project.urls]
"Homepage"="https://github.com/realdanielbyrne/N-BEATS-Lightning"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}