-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.2 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.package-data]
mw_plot = ["*.png", "*.jpg", "*.mplstyle"]
[project]
name = "mw_plot"
version = "0.14.0.dev0"
dynamic = ["dependencies"]
requires-python = ">=3.9"
authors = [
{name = "Henry Leung", email = "[email protected]"},
]
maintainers = [
{name = "Henry Leung", email = "[email protected]"},
]
description = "A handy python package to do plotting on a face-on/edge-on/allsky map milkyway with matplotlib and bokeh"
readme = "README.rst"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://github.com/henrysky/milkyway_plot"
Documentation = "https://milkyway-plot.readthedocs.io/"
Repository = "https://github.com/henrysky/milkyway_plot/"
"Bug Tracker" = "https://github.com/henrysky/milkyway_plot/issues"
Changelog = "https://milkyway-plot.readthedocs.io/en/latest/changelog.html"