Skip to content

Commit a0725fb

Browse files
committed
feat: pyproject support
1 parent 5263852 commit a0725fb

File tree

2 files changed

+38
-31
lines changed

2 files changed

+38
-31
lines changed

pyproject.toml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
[tool.poetry]
2+
name = "django-admin-numeric-filter"
3+
version = "0.1.7"
4+
description = "Numeric filters for Django admin"
5+
license = "MIT"
6+
readme = "README.md"
7+
authors = []
8+
homepage = "https://github.com/lukasvinclav/django-admin-numeric-filter"
9+
repository = "https://github.com/lukasvinclav/django-admin-numeric-filter"
10+
packages = [
11+
{ include = "admin_numeric_filter", from = "src" },
12+
]
13+
keywords = [
14+
"django",
15+
"admin",
16+
"numeric",
17+
"filter",
18+
]
19+
classifiers = [
20+
"Programming Language :: Python",
21+
"Programming Language :: Python :: 3.6",
22+
"Programming Language :: Python :: 3.7",
23+
"Programming Language :: Python :: 3.8",
24+
"Programming Language :: Python :: 3.9",
25+
"Programming Language :: Python :: 3.10",
26+
"Operating System :: OS Independent",
27+
"Environment :: Web Environment",
28+
"Intended Audience :: Developers",
29+
"Framework :: Django",
30+
]
31+
32+
[tool.poetry.dependencies]
33+
python = ">=3.6"
34+
django = ">=3.2"
35+
36+
[build-system]
37+
requires = ["poetry>=1.0"]
38+
build-backend = "poetry.masonry.api"

setup.py

Lines changed: 0 additions & 31 deletions
This file was deleted.

0 commit comments

Comments
 (0)