-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (93 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
97 lines (93 loc) · 2.52 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# following PEP 621: https://peps.python.org/pep-0621
# details: https://packaging.python.org/en/latest/guides/writing-pyproject-toml
[build-system]
requires = ["setuptools >= 76.0.0", "versioneer"]
build-backend = "setuptools.build_meta"
[project]
dynamic = [
"description",
"license",
"version",
"requires-python",
"classifiers",
"dependencies",
"optional-dependencies",
]
name = "posydon"
#description = "POSYDON the Next Generation of Population Synthesis"
authors = [
{name = "POSYDON Collaboration", email = "posydon.team@gmail.com"},
]
maintainers = [
{name = "POSYDON Collaboration", email = "posydon.team@gmail.com"},
]
#license = 'GPLv3+'
#version = "2.0.0.dev"
#requires-python = ">=3.11, <3.12"
readme = "README.md"
keywords = [
"POSYDON",
"Astronomy",
"Binary Stars",
"Population Synthesis",
"MESA",
]
#classifiers = [
# 'Development Status :: 4 - Beta',
# 'Intended Audience :: Science/Research',
# 'Intended Audience :: End Users/Desktop',
# 'Topic :: Scientific/Engineering',
# 'Topic :: Scientific/Engineering :: Astronomy',
# 'Topic :: Scientific/Engineering :: Physics',
# 'Programming Language :: Python',
# 'Programming Language :: Python :: 3.11',
# 'Operating System :: POSIX',
# 'Operating System :: Unix',
# 'Operating System :: MacOS',
# 'Natural Language :: English',
# 'License :: OSI Approved :: GNU General Public License v3 (GPLv3+)',
#]
#dependencies = [
# 'numpy < 2.0.0, >= 1.24.2',
# 'scipy <= 1.14.1, >= 1.10.1',
# 'iminuit <= 2.30.1, >= 2.21.3',
# 'configparser <= 7.1.0, >= 5.3.0',
# 'astropy <= 6.1.6, >= 5.2.2',
# 'pandas <= 2.2.3, >= 2.0.0',
# 'scikit-learn == 1.2.2',
# 'matplotlib <= 3.9.2, >= 3.9.0',
# 'matplotlib-label-lines <= 0.7.0, >= 0.5.2',
# 'h5py <= 3.12.1, >= 3.8.0',
# 'psutil <= 6.1.0, >= 5.9.4',
# 'tqdm <= 4.67.0, >= 4.65.0',
# 'tables <= 3.10.1, >= 3.8.0',
# 'progressbar2 <= 4.5.0, >= 4.2.0',
# 'hurry.filesize <= 0.9, >= 0.9',
# 'python-dotenv <= 1.0.1, >= 1.0.0',
#]
#[project.optional-dependencies]
#doc = [
# 'ipython',
# 'sphinx >= 8.2.2',
# 'numpydoc',
# 'sphinx_rtd_theme',
# 'sphinxcontrib_programoutput',
# 'PSphinxTheme',
# 'nbsphinx',
# 'pandoc'
#]
#vis = [
# 'PyQt5 <= 5.15.11, >= 5.15.9'
#]
#ml = [
# 'tensorflow >= 2.13.0'
#]
#hpc = [
# 'mpi4py >= 3.0.3'
#]
[project.urls]
Homepage = "https://posydon.org"
Documentation = "https://posydon.org/POSYDON"
Repository = "https://github.com/POSYDON-code/POSYDON.git"
Issues = "https://github.com/POSYDON-code/POSYDON/issues"
Changelog = "https://github.com/POSYDON-code/POSYDON/releases"