-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 967 Bytes
/
Copy pathpyproject.toml
File metadata and controls
38 lines (34 loc) · 967 Bytes
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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lentil"
description = "Heart-healthy physical optics"
authors = [
{name = "Andy Kee"},
]
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE.rst"}
dependencies = [
"numpy>=1.17",
"scipy",
]
dynamic = ["version"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
[project.urls]
Homepage = "https://github.com/andykee/lentil"
Documentation = "https://andykee.github.io/lentil/"
"Bug Tracker" = "https://github.com/andykee/lentil/issues"
[tool.setuptools]
packages = ["lentil"]
[tool.setuptools.dynamic]
version = {attr = "lentil.__version__"}