-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 882 Bytes
/
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
[project]
name = "aukpy"
version = "1.0.0"
authors = [
{ name="Vincent Luczkow", email="[email protected]" },
]
description = "Reimplementation of auk in Python"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy==1.23.1",
"pandas==1.4.3"
]
[project.optional-dependencies]
dev = [
"black==22.6.0",
"mypy==0.971",
"pandas-stubs==1.4.3.220807",
"pre-commit==2.20.0",
"pytest==7.1.2",
"Sphinx==5.1.1",
"sphinx_rtd_theme==1.0.0"
]
[project.urls]
"Homepage" = "https://github.com/vluzko/aukpy"
"Bug Tracker" = "https://github.com/vluzko/aukpy/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"