forked from furious-luke/django-address
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (39 loc) · 1.19 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
[tool.poetry]
name = "django-address"
version = "0.2.5"
description = "A django application for describing addresses."
authors = ["Luke Hodkinson <furious.luke@gmail.com>"]
license = "BSD"
readme = "README.md"
homepage = "https://github.com/furious-luke/django-address"
repository = "https://github.com/furious-luke/django-address"
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
packages = [
{ include = "address" }
]
include = ["setup.cfg"]
[tool.poetry.dependencies]
python = ">=3.5"
Django = ">=2.1"
[tool.poetry.dev-dependencies]
black = {version = ">=21.7b0", python = ">=3.6.2"}
flake8 = "^3.9.2"
[tool.black]
line-length = 119
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"