-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
38 lines (36 loc) · 1014 Bytes
/
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
[tool.poetry]
name = "django-admin-numeric-filter"
version = "0.1.9"
description = "Numeric filters for Django admin"
license = "MIT"
readme = "README.md"
authors = []
homepage = "https://github.com/lukasvinclav/django-admin-numeric-filter"
repository = "https://github.com/lukasvinclav/django-admin-numeric-filter"
packages = [
{ include = "admin_numeric_filter" },
]
keywords = [
"django",
"admin",
"numeric",
"filter",
]
classifiers = [
"Programming Language :: Python",
"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",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Framework :: Django",
]
[tool.poetry.dependencies]
python = ">=3.6"
django = ">=3.2"
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"