-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.48 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
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "galsyn"
version = "0.1.3"
description = "A Python package for generating astrophysical images of galaxies from hydrodynamical simulations."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Abdurrouf", email = "abdurroufastro@gmail.com"}
]
keywords = ["astronomy", "astrophysics", "galaxy", "simulation", "hydrodynamics"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Development Status :: 3 - Alpha",
]
# illustris_python is typically installed from GitHub
# pip install git+https://github.com/illustris/illustris_python.git
dependencies = [
"numpy",
"astropy",
"scipy",
"matplotlib",
"h5py",
"joblib",
"tqdm",
"tqdm_joblib",
"fsps",
"psutil",
"ipywidgets",
"photutils",
"bagpipes",
]
[project.urls]
Homepage = "https://github.com/aabdurrouf/GalSyn"
Repository = "https://github.com/aabdurrouf/GalSyn"
Documentation = "https://github.com/aabdurrouf/GalSyn"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["galsyn*"]
[tool.setuptools.package-data]
galsyn = ["data/*.hdf5", "data/*.txt"]