-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (62 loc) · 1.58 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "tsa"
description = "Time Series Analysis Tools"
authors = [
{name = "Hannes Breytenbach", email = "hannes@saao.ac.za"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux"
]
dynamic = ["version", "readme"]
requires-python = ">=3.8"
dependencies = [
"attrs",
"more_itertools",
"numpy",
"scipy",
"scikit_learn",
"astropy",
"matplotlib",
"obstools",
"recipes",
"scrawl"
]
[project.urls]
"Homepage" = "https://github.com/astromancer/tsa"
"Bug Tracker" = "https://github.com/astromancer/tsa/issues"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
"setuptools_scm[toml]>=3.4",
"wheel",
"six"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "tsa._version.version"}
readme = {file = "README.md", content-type = "text/markdown"}
optional-dependencies.test = { file = ["requirements-dev.txt"] }
[tool.setuptools_scm]
write_to = "src/tsa/_version.py"
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py38
[testenv]
# install testing framework
# ... or install anything else you might need here
deps =
-rrequirements.txt
-rrequirements-dev.txt
# run the tests
# ... or run any other command line tool you need to run here
commands = pytest {posargs} # substitute with tox positional arguments
"""