forked from emiddell/dashi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (47 loc) · 1.06 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydashi"
dynamic = ["version"]
description = "TODO"
readme = "README.rst"
requires-python = ">=3.10"
authors = [
{ name = "The dashi developers", email = "eike@middell.net" },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"Jinja2>=2.7.3",
"MarkupSafe>=0.23",
"Pygments>=2.0.2",
"Sphinx>=1.2.3",
"docutils>=0.12",
"matplotlib>=3.0.0",
"mock>=1.0.1",
"nose>=1.3.4",
"numpy>=2.0.0",
"pyparsing>=2.0.3",
"python-dateutil>=2.4.0",
"pytz>=2014.10",
"scipy>=0.15.1",
"six>=1.9.0",
]
[project.urls]
Homepage = "https://github.com/emiddell/dashi"
[tool.hatch.version]
path = "dashi/__init__.py"
[tool.hatch.build.targets.wheel]
include = [
"/dashi",
]
[tool.hatch.build.targets.sdist]
include = [
"/dashi",
]