-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.42 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[tool.poetry]
name = "giant-people"
version = "0.5.0"
description = "A small reusable package that adds a People app to a project"
authors = [
"Will-Hoey <will.hoey@giantmade.com>",
"Jeremiah Boby <jeremiah.boby@giantmade.com>",
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/giantmade/giant-people"
repository = "https://github.com/giantmade/giant-people"
keywords = ["people", "app"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
packages = [
{ include = "people" }
]
[tool.poetry.dependencies]
python = "^3.6"
giant-mixins = "*"
django-filer = "*"
django-admin-sortable2 = "*"
django-polymorphic = "<=3.0.0"
six = "^1.16.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
django-cms = "^3.7.2"
black = "^19.10b0"
pytest-django = "^3.9.0"
pytest-cov = "^2.10.0"
pytest-mock = "^3.2.0"
[[tool.poetry.source]]
name = "TestPyPi"
url = "https://test.pypi.org/simple/"
secondary = true
[tool.black]
line-length = 99
target-version = ['py36']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.ipython
| \.mypy_cache
| \.ropeproject
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| migrations
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"