-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 880 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 880 Bytes
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
[tool.poetry]
name = "tsgen"
version = "0.6.0"
description = "Time Series Generator"
authors = ["Marwan Debbiche <marwan.debbiche@gmail.com>"]
license = "MIT"
homepage = "https://github.com/MarwanDebbiche/tsgen"
repository = "https://github.com/MarwanDebbiche/tsgen"
readme = "README.md"
keywords = ["time-series", "data-science", "time-series-analysis"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.6.1"
pandas = "^1.1.3"
numpy = "^1.19.2"
coverage = "^5.3"
matplotlib = {version = "^3.3.2", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.1.1"
pylint = "^2.6.0"
black = "^20.8b1"
mypy = "^0.790"
pre-commit = "^2.7.1"
coveralls = "^2.1.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"