forked from lo-co/atm-py
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
49 lines (39 loc) · 1.25 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
[build-system]
requires = ["setuptools>=46.4.0", "wheel", "setuptools_scm"]
#requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "atmPy"
authors = [{ name = "Hagen Telg", email = "[email protected]" }]
description = "This package contains atmospheric science tools"
#readme = "README.md"
license = { file = "LICENSE" }
#keywords = ["atmospheric science", "tools"]
#urls = { Homepage = "https://github.com/hagne/atm-py" }
requires-python = ">=3.7" # Python version compatibility
dynamic = ["version"]
#packages = [
# { include : "atm-py" },
# # You can list other packages or sub-packages if needed
#]
#package-dir = { "" = "src" }
[project.urls]
Documentation = "https://github.com/hagne/atm-py" # or your documentation URL
Repository = "https://github.com/hagne/atm-py"
#[project.dependencies]
# numpy = "*"
# pandas = "*"
# scipy = "*"
# matplotlib = "*"
[tool.setuptools]
packages = ["atmPy"]
#[project.optional-dependencies]
#plotting = ["matplotlib"]
#[tool.setuptools]
#find-packages = { where = "." }
#[tool.setuptools.scripts]
# Add your scripts here if any
#[tool.setuptools.test]
#test-suite = "nose.collector"
[tool.setuptools_scm]
write_to = "_version.py" # Path to write the version file