-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.41 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
51
52
53
54
55
56
57
58
59
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
requires_backend = "setuptools.build_meta"
[project]
name = "radiosim"
version = "0.4.0"
description="Simulation of radio skies to create astrophysical data sets"
authors =[{ name = "Kevin Schmidt, Felix Geyer, Paul-Simon Blomenkamp, Stefan Fröse, Christian Arauner" }]
maintainers = [
{ name = "Kevin Schmitz", email = "[email protected]" },
{ name = "Christian Arauner", email = "[email protected]" },
]
license = { text = "MIT" }
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
dependencies = [
"astropy",
"click",
"scikit-image",
"joblib",
"h5py",
"matplotlib",
"numpy",
"opencv-python",
"pathlib",
"pytest",
"scipy",
"toml",
"tqdm",
]
[project.urls]
Repository = "https://github.com/radionets-project/radiosim"
[project.optional-dependencies]
tests = [
"pytest",
"pytest-cov"
]
[tool.setuptools.packages.find]
where = ["."]
[project.scripts]
radiosim-simulate = "radiosim.scripts.start_simulation:main"