-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
46 lines (43 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
41
42
43
44
45
46
[project]
name = "inform"
version = '1.31.1'
description = 'print & logging utilities for communicating with user'
readme = "README.rst"
keywords = ["inform", "logging", "printing"]
authors = [
{name = "Ken Kundert"},
{email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
]
requires-python = ">=3.6"
dependencies = [
"arrow",
"six",
]
[project.optional-dependencies]
test = [
"hypothesis",
"mypy",
"num2words",
"pylama",
"pytest",
"pytest-cov",
"quantiphy",
"tox",
]
[project.urls]
homepage = "https://inform.readthedocs.io"
documentation = "https://inform.readthedocs.io"
repository = "https://github.com/kenkundert/inform"
changelog = "https://github.com/KenKundert/inform/blob/master/doc/releases.rst"
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"