-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (53 loc) · 1.46 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
55
56
57
[tool]
[tool.poetry]
name = "django-location-api"
version = "0.1.0"
homepage = "https://github.com/carlosfunk/django-location-api"
description = "Django package for location services"
authors = ["Carl Robben <[email protected]>"]
readme = "README.rst"
license = "BSD-3-Clause"
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 4.1',
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'
]
packages = [
{ include = "location_api" },
{ include = "tests", format = "sdist" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4"
django = "^4.2"
djangorestframework = "^3.14.0"
djangorestframework-gis = "^1.0"
django-filter = "^24.3"
[tool.poetry.group.dev.dependencies]
bumpversion = "*"
coverage = "*"
flake8 = "*"
invoke = "*"
isort = "*"
pylint = "*"
sphinx = ">=5.3.0"
black = "*"
faker = "^18.4.0"
factory-boy = "^3.2.1"
django-environ = "^0.8.1"
psycopg2-binary = "^2.9.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"