-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (35 loc) · 1.08 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
[build-system]
requires = ["setuptools >= 75.0", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "besta"
dynamic = ["version", "dependencies"]
authors = [
{ name="Pablo Corcho-Caballero", email="[email protected]" },
]
description = "Hierarchical Bayesian Stelllar Population Synthesis"
readme = "README.md"
keywords = ["astronomy", "SPS"]
license = {text = "BSD-3-Clause"}
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Topic :: Scientific/Engineering',
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.6"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.versioneer]
VCS = 'git'
style = 'pep440'
versionfile_source = 'src/besta/_version.py'
versionfile_build = 'besta/_version.py'
tag_prefix = 'v'
[project.urls]
Homepage = "https://github.com/PabloCorcho/besta"
Issues = "https://github.com/PabloCorcho/besta/issues"