-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
54 lines (44 loc) · 1.18 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
48
49
50
51
52
53
54
[tool.poetry]
name = "Django-Shared-Property"
version = "0.8.0"
description = "Properties that are both ORM expressions and python code."
authors = ["Matthew Schinckel <matt@schinckel.net>"]
license = "MIT license"
readme = "README.rst"
repository = "https://github.com/schinckel/django-shared-property"
homepage = "https://django-shared-property.readthedocs.io"
packages = [
{ include = "django_shared_property", from = "src"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = ">3.8"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
bump2version = "*"
pip = "*"
wheel = "*"
watchdog = "*"
flake8 = "*"
tox = "*"
coverage = "*"
Sphinx = "*"
twine = "*"
pytest = "*"
pytest-runner = "*"
pytest-cov = "*"
rstcheck = "*"
ptpython = "*"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.core.masonry.api"