-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (41 loc) · 1.41 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
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "resumeback"
version = "1.0.0"
description = "Library for using callbacks to resume your code."
authors = ["FichteFoll <fichtefoll2@googlemail.com>"]
license = "MIT"
readme = "README.rst"
homepage = "http://fichtefoll.github.io/resumeback/"
repository = "https://github.com/FichteFoll/resumeback"
packages = [
{ include = "resumeback" },
{ include = "tests", format = "sdist" },
]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[tool.poetry.dependencies]
python = "^3.5"
# Actually dev dependencies, but those can't be specified in extras.
# https://github.com/python-poetry/poetry/issues/129
pytest = { version = "^5.4.1", optional = true }
pytest-cov = { version = "^2.8.1", optional = true }
flake8 = { version = "^3.7.9", optional = true }
sphinx = { version = "^2.4.4", optional = true }
sphinx-readable-theme = { version = "^1.3.0", optional = true }
[tool.poetry.dev-dependencies]
# See optional dependencies above
[tool.poetry.extras]
docs = ["sphinx", "sphinx-readable-theme"]
test = ["pytest", "pytest-cov"]
flake8 = ["flake8"]
[tool.pytest]
testpaths = "tests"