-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
134 lines (115 loc) · 2.8 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[build-system]
requires = ["setuptools>=64", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pyvisgen"
dynamic = ["version"]
description = "Simulate radio interferometer observations and visibility generation with the RIME formalism."
readme = "README.md"
authors = [{ name = "Kevin Schmitz, Felix Geyer, Stefan Fröse, Anno Knierim, Tom Groß" }]
maintainers = [
{ name = "Kevin Schmitz", email = "[email protected]" },
{ name = "Anno Knierim", email = "[email protected]" },
]
license = { text = "MIT" }
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Development Status :: 4 - Beta",
]
requires-python = ">=3.10"
dependencies = [
"astroplan",
"astropy<=6.1.0",
"click",
"h5py",
"ipython",
"jupyter",
"matplotlib",
"natsort",
"numexpr",
"numpy",
"pandas",
"pre-commit",
"pytest",
"pytest-cov",
"scipy",
"toma",
"toml",
"torch",
"torch",
"tqdm",
]
[project.optional-dependencies]
tests = [
"h5py",
"pytest >= 7.0",
"pytest-cov",
"tomli",
]
docs = [
"graphviz",
"ipython",
"jupyter",
"nbsphinx",
"notebook",
"numpydoc",
"pydata_sphinx_theme",
"pyvisgen[all]",
"sphinx",
"sphinx-changelog",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery >= 0.16.0",
"sphinx_automodapi",
"sphinxcontrib-bibtex",
"tomli; python_version < '3.11'",
]
[project.scripts]
pyvisgen_create_dataset = "pyvisgen.simulation.scripts.create_dataset:main"
[tool.setuptools_scm]
write_to = "pyvisgen/_version.py"
[tool.setuptools.packages.find]
where = ["."]
[tool.coverage.run]
omit = [
"pyvisgen/version.py",
"pyvisgen/_version.py",
"docs/*"
]
[tool.coverage.xml]
output = "coverage.xml"
[tool.towncrier]
package = "pyvisgen"
directory = "docs/changes"
filename = "CHANGES.rst"
template = "docs/changes/template.rst"
# let towncrier create proper links to the merged PR
issue_format = "`#{issue} <https://github.com/radionets-project/pyvisgen/pull/{issue}>`__"
[tool.towncrier.fragment.feature]
name = "New Features"
showcontent = true
[tool.towncrier.fragment.bugfix]
name = "Bug Fixes"
showcontent = true
[tool.towncrier.fragment.api]
name = "API Changes"
showcontent = true
[tool.towncrier.fragment.datamodel]
name = "Data Model Changes"
showcontent = true
[tool.towncrier.fragment.optimization]
name = "Refactoring and Optimization"
showcontent = true
[tool.towncrier.fragment.maintenance]
name = "Maintenance"
showcontent = true
[[tool.towncrier.section]]
name = ""
path = ""