-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
62 lines (52 loc) · 1.82 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
################################################################################
# Build Configuration
################################################################################
[build-system]
build-backend = "hatchling.build"
requires = ["hatchling"]
################################################################################
# Project Configuration
################################################################################
[project]
name = "mypackage"
version = "0.1.0"
description = "A package that adds numbers together."
authors = [
{ name = "pyOpenSci", email = "pyopensci@pyopensci.org" },
]
license = "MIT"
readme = {"file" = "README.md", "content-type" = "text/markdown"}
requires-python = ">=3.10"
# Please consult https://pypi.org/classifiers/ for a full list.
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
# TODO: add keywords
keywords = []
# TODO: add dependencies
dependencies = []
[project.urls]
Documentation = "https://mypackage.readthedocs.io"
Download = "https://pypi.org/project/mypackage/#files"
[project.optional-dependencies]
dev = [
"hatch",
"pre-commit",
]
################################################################################
# Tool Configuration
################################################################################
[tool.hatch.build]
only-packages = true
[tool.hatch.build.targets.wheel]
packages = ["src/mypackage"]