-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.08 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
[tool.poetry]
name = "regta-period"
version = "0.2.0"
description = "Moment-independent periods"
authors = ["Vladimir Alinsky <Vladimir@Alinsky.tech>"]
license = "MIT"
readme = "README.md"
homepage = "https://regta-period.alinsky.tech"
repository = "https://github.com/SKY-ALIN/regta-period"
keywords = ["time", "intervals", "periods", "regta"]
include = [
"LICENSE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.7.2,<4.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
flake8 = "^3.0.0"
pylint = "^2.17.7"
Sphinx = "^5.3.0"
furo = "^2023.3.27"
sphinx-copybutton = "^0.5.2"
m2r2 = "^0.3.3"
no-optional = "^0.4.0"
isort = "^5.11.5"
mypy = "^1.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"