-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
40 lines (38 loc) · 1.07 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
[project]
name = "quantiphy"
version = "2.20"
description = "physical quantities (numbers with units)"
readme = "README.rst"
keywords = [
"quantities",
"physical quantity",
"units",
"SI scale factors",
"engineering notation",
"mks",
"cgs"
]
authors = [
{name = "Ken Kundert"},
{email = "quantiphy@nurdletech.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.6"
[project.urls]
homepage = "https://quantiphy.readthedocs.io"
documentation = "https://quantiphy.readthedocs.io"
repository = "https://github.com/kenkundert/quantiphy"
changelog = "https://github.com/KenKundert/quantiphy/blob/master/doc/releases.rst"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"