-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
38 lines (35 loc) · 975 Bytes
/
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
[tool.poetry]
name = "ecological"
version = "2.0.0"
description = "Map a Python configuration from environment variables"
authors = [
"João Santos <[email protected]>",
"Marcin Zaremba <[email protected]>"
]
license = "MIT"
readme = "README.rst"
homepage = "https://github.com/jmcs/ecological"
repository = "https://github.com/jmcs/ecological"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = "^3.6"
dataclasses = "^0.6.0"
[tool.poetry.dev-dependencies]
tox = "^3.12"
pytest = "^4.6"
pytest-cov = "^2.7"
black = {version = "^18.3-alpha.0",allows-prereleases = true}
rope = "^0.14.0"
flake8 = "^3.7"
doc8 = "^0.8.0"
pygments = "^2.4"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"