-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (24 loc) · 970 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
39
40
[ tool.poetry ]
name = "simpleset"
version = "0.4.1"
description = "Better Than Enums"
authors = [ "Ofer Nave <[email protected]>" ]
readme = "README.md"
repository = "https://github.com/odigity/simpleset/"
documentation = "https://simpleset.readthedocs.io/en/latest/"
packages = [ { include = "simpleset" } ]
[ tool.poetry.urls ]
Changelog = "https://github.com/odigity/simpleset/blob/master/CHANGELOG.md"
[ tool.poetry.dependencies ]
python = "^3.7"
[ tool.poetry.group.dev.dependencies ]
django = "^3.2"
graphene = "^2.1.9"
pytest = "^7"
[ tool.pytest.ini_options ]
addopts = [ "--capture=no", "--color=yes", "--import-mode=importlib" ]
markers = [ "only" ] # useful during development (`@pytest.mark.only` + `pytest -m only`)
testpaths = [ "tests" ]
[ build-system ]
requires = [ "poetry-core" ]
build-backend = "poetry.core.masonry.api"