-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
54 lines (47 loc) · 1.57 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "numpy>=2.0", "cython"]
build-backend = "setuptools.build_meta"
[project]
name = "ts2vg"
description = "Build visibility graphs from time series data."
readme = "README.rst"
requires-python = ">=3.9"
license.file = "LICENSE"
keywords = ["graph", "network", "visibility", "time", "series"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Cython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
]
dependencies = [
"numpy>=1.24",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://carlosbergillos.github.io/ts2vg"
"Documentation" = "https://carlosbergillos.github.io/ts2vg"
"Source Code" = "https://github.com/CarlosBergillos/ts2vg"
[[project.authors]]
name = "Carlos Bergillos"
email = "[email protected]"
[project.scripts]
ts2vg = "ts2vg.cli:main"
[project.optional-dependencies]
tests = [
"pytest",
]
[tool.setuptools.packages.find]
include = ["ts2vg*"]
[tool.setuptools.dynamic]
version.attr = "ts2vg._version.__version__"