-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (42 loc) · 1.55 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
[build-system]
requires = ["setuptools >= 75.0", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version", "dependencies"]
name = "pst"
authors = [
{ name="Yago Ascasibar", email="[email protected]" },
{ name="Pablo Corcho-Caballero", email="[email protected]" },
{ name="Daniel Jiménez-López", email="[email protected]" },
]
description = "Population Synthesis Toolkit"
readme = "README.md"
keywords = ["astronomy", "stellar populations synthesis", "SED fitting"]
license = {file="LICENSE"}
classifiers = [
'Development Status :: 3 - Alpha',
'License :: Free for non-commercial use',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
]
requires-python = ">=3.7"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
[tool.versioneer]
VCS = 'git'
style = 'pep440'
versionfile_source = 'src/pst/_version.py'
versionfile_build = 'pst/_version.py'
tag_prefix = 'v'
[project.urls]
Repository = 'https://github.com/paranoya/population-synthesis-toolkit'
Issues = 'https://github.com/paranoya/population-synthesis-toolkit/issues'