-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (43 loc) · 1.6 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "breidablik"
version = "1.5.1"
authors = [
{ name="Ella Xi Wang", email="[email protected]" },
]
description = "Interpolate lithium spectra and predict lithium abundance for most main sequence stars"
readme = "README.md"
keywords = ["lithium", "stellar", "spectroscopy"]
requires-python = ">=3.7"
dependencies = [
"hypothesis >= 4.17",
"numpy >= 1.15",
"scipy >= 1.3",
"pytest >= 3.5",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 3 - Alpha",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
# Pick your license as you wish (see also "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
]
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["breidablik*"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.urls]
Homepage = "https://github.com/ellawang44/Breidablik"
Documentation = "https://breidablik.readthedocs.io/en/latest/index.html"
Repository = "https://github.com/ellawang44/Breidablik.git"
Issues = "https://github.com/ellawang44/Breidablik/issues"