-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (29 loc) · 916 Bytes
/
pyproject.toml
File metadata and controls
31 lines (29 loc) · 916 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "astrokit"
version = "0.1.0"
authors = [
{name="Rui Zhu", email="zhurui675@gmail.com" },
]
requires-python = ">=3.12"
readme = "README.md"
description = "AstroKit: A Python ToolKit for Astronomy"
classifiers = [
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Unix',
'Operating System :: POSIX',
'Topic :: Software Development',
'Topic :: Scientific/Engineering'
]
license = { file = "LICENSE" }
[project.urls]
"Homepage" = "https://github.com/astro-zhurui/astrokit"
"Bug Tracker" = "https://github.com/astro-zhurui/astrokit/issues"