-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
56 lines (46 loc) · 1.27 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
[build-system]
requires = ['setuptools>=42']
build-backend = 'setuptools.build_meta'
[project]
name = "ts2g2"
description = "A package to turn timeseries into graphs and graphs into timeseries"
version = "0.1.0"
authors = [
{ name = "Joze Rozanec", email = "[email protected]" }
]
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["machine learning", "graphs", "networks", "timeseries"]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 4 - Beta",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: Apache Software License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3.9",
]
requires-python = ">= 3.9"
[project.urls]
Source = "https://github.com/jmrozanec/time-series-generator"
Docs = "https://github.com/jmrozanec/time-series-generator"
[project.optional-dependencies]
dev = [
"black",
"flake8",
"python-githooks",
"mkdocs-material",
"mkdocs-jupyter",
]
test = [
"coverage",
"nbmake",
]
all = ["datachart[dev,test]"]
[tool.setuptools.packages.find]
where = ["."]
include = ["datachart*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }