-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 2 KB
/
pyproject.toml
File metadata and controls
65 lines (59 loc) · 2 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0", "cython>=3.0", "numpy", "six"]
build-backend = "setuptools.build_meta"
[project]
name = "caesar"
dynamic = ["version"]
authors = [
{ name = "Robert Thompson" },
{ name = "Desika Narayanan", email = "desika.narayanan@gmail.com" },
{ name = "Romeel Dave" },
{ name = "Benjamin Kimock" },
{ name = "Weiguang Cui" },
]
description = "CAESAR is a python library for analyzing the outputs from cosmological simulations."
readme = "README.md" # Make sure you have a README.md file
requires-python = ">=3.6"
license = { file = "LICENSE" } # It's best practice to add a LICENSE file and reference it here
keywords = ["astronomy", "simulations", "cosmology", "halo-finder"] # Suggested keywords
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License", # Please update with your actual license
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"six",
"numpy",
"h5py",
"cython",
"psutil",
"scipy",
"joblib",
"scikit-learn",
"yt",
"astropy",
# for pyloser
"synphot",
"fsps"
# If you need the git dependency, uncomment the following line
# "pygadgetreader @ git+https://github.com/dnarayanan/pygadgetreader",
]
[project.urls]
"Homepage" = "https://github.com/dnarayanan/caesar"
"Bug Tracker" = "https://github.com/dnarayanan/caesar/issues"
[project.scripts]
caesar = "caesar.command_line:run"
# This tells setuptools how to find your dynamic version
[tool.setuptools.dynamic]
version = { attr = "caesar.__version__.VERSION" }
# This tells setuptools to find packages automatically
[tool.setuptools]
packages = ["caesar", "caesar.pyloser"]