-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.23 KB
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "diskmap"
authors = [{name = "Tomas Stolker", email = "stolker@strw.leidenuniv.nl"}]
description = "Scattered light mapping of protoplanetary disks"
readme = "README.rst"
requires-python = ">=3.11,<3.14"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"astropy",
"beartype",
"numpy",
"scipy",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"jupyter",
"nbsphinx",
"pandoc",
"sphinx",
"sphinx-automodapi",
"sphinxawesome-theme",
]
test = [
"black",
"flake8",
"pycodestyle",
"pylint",
"pytest",
"pytest-cov",
]
[project.urls]
Documentation = "https://diskmap.readthedocs.io"
Repository = "https://github.com/tomasstolker/diskmap"
Issues = "https://github.com/tomasstolker/diskmap/issues"
[tool.setuptools]
packages = ["diskmap"]
[tool.setuptools_scm]
write_to = "diskmap/_version.py"
local_scheme = "no-local-version"