forked from KenKundert/ec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 1.09 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 = 'engineering-calculator'
version = "1.11"
description = "Engineering RPN calculator."
readme = "README.rst"
keywords = ["calculator", "RPN"]
authors = [
{name = "Ken Kundert"},
{email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.6"
dependencies = [
"docopt",
"docutils",
"inform",
"quantiphy",
"requests",
]
[project.scripts]
ec = "engineering_calculator.main:main"
[project.urls]
homepage = "https://engineering-calculator.readthedocs.io"
documentation = "https://engineering-calculator.readthedocs.io"
repository = "https://github.com/kenkundert/ec"
changelog = "https://engineering-calculator.readthedocs.io/en/latest/releases.html"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"