forked from cordery/django-countries-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (47 loc) · 1.35 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
[tool.poetry]
name = "django-countries-plus"
version = "1.3.1"
description = "A django model & fixture containing all data from the countries table of Geonames.org"
authors = ["Andrew Cordery <[email protected]>"]
license = "MIT"
readme = "README.rst"
include = ["LICENSE", "*.rst", "*.md"]
packages = [
{include = "countries_plus"}
]
homepage = "https://github.com/cordery/django-countries-plus"
repository = "https://github.com/cordery/django-countries-plus"
keywords = ["django-countries-plus"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "*"
django = [
{version = "<2", python = "^2.7"},
{version = ">=2", python = "^3.6"}
]
six = "*"
requests = "*"
[tool.poetry.dev-dependencies]
coverage = "*"
codecov = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
bumpversion = "*"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"