-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 1.04 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "amuse-template"
version = "2024.8.0" # year.month.release is a good option, otherwise you can use semantic versioning (major.minor.patch)
dependencies = [
"amuse-framework>2024.0.0",
]
requires-python = ">=3.8"
authors = [
{name = "Am Use", email = "[email protected]"},
]
maintainers = [
{name = "Am User", email = "[email protected]"}
]
description = "My Example AMUSE project"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["astronomy", "amuse"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
gui = []
cli = []
[project.urls]
Homepage = "https://amusecode.org"
Documentation = "https://amuse.readthedocs.io"
Repository = "https://github.com/amusecode/amuse_template.git"
"Bug Tracker" = "https://github.com/amusecode/amuse_template/issues"
Changelog = "https://github.com/amusecode/amuse_template/main/CHANGELOG.md"
[project.scripts]
amuse_template = "amuse_template:main"