-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
36 lines (33 loc) · 892 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pyfomod"
version = "1.2.1"
description = "A high-level fomod library written in Python."
license = "Apache-2.0"
authors = ["Daniel Nunes <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/GandaG/pyfomod"
repository = "https://github.com/GandaG/pyfomod"
documentation = "https://pyfomod.rtfd.io/"
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
]
packages = [
{ include = "pyfomod", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.6"
lxml = "^4"
[tool.poetry.dev-dependencies]
bump2version = "^0.5"
invoke = "^1.3"
isort = "^4.3"
black = { version = "^19", allows-prereleases = true }
flake8 = "^3.7"
flake8-bugbear = "^19.8"
pytest = "^5.2"
sphinx = "^2.2"
sphinx-rtd-theme = "^0.4"