-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.22 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
[project]
name = "mincfg"
version = "0.9"
requires-python = ">=3.7"
description = "Minimal Application Configuration"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Paul Jimenez", email = "[email protected]"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython"
]
dependencies = [ ]
[project.urls]
Homepage = "http://github.com/pjz/mincfg"
Documentation = "http://pjz.github.io/mincfg"
Repository = "http://github.com/pjz/mincfg.git"
[project.optional-dependencies]
yaml = [ "pyyaml" ]
ini = [ "configobj" ]
env = [ "python-dotenv" ]
dev = [
"pytest",
"pytest-cov",
"pytest-pylint",
"pytest-mypy",
"build",
"twine",
"sphinx",
"furo",
]
all = [
"pyyaml",
"configobj",
"python-dotenv"
]