-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.02 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
[tool.poetry]
name = "giant-contact"
version = "0.7"
description = "Adds a generic contact app for use with Giant projects"
authors = ["Will-Hoey <will.hoey@giantmade.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/giantmade/giant-contact"
repository = "https://github.com/giantmade/giant-contact"
keywords = ["contact", "app"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Software Development :: Documentation",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"LICENSE",
]
packages = [
{ include = "contact" }
]
[tool.poetry.dependencies]
python = "^3.9"
giant-mixins = "*"
[tool.poetry.dev-dependencies]
pytest = "~7"
django = "~3"
django-cms = "~3"
black = "~22"
pytest-django = "~3"
pytest-cov = "~4"
pytest-mock = "~3"
six = "~1"
[[tool.poetry.source]]
name = "TestPyPi"
url = "https://test.pypi.org/simple/"
secondary = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"