Skip to content

Commit 7664de4

Browse files
committed
Modern Python packaging
1 parent 5143265 commit 7664de4

File tree

4 files changed

+32
-45
lines changed

4 files changed

+32
-45
lines changed

LICENSE.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Copyright (c) 2009, Karim A. (aka Directeur)
2+
2010, Stéphane Raimbault
23
All rights reserved.
34

45
Redistribution and use in source and binary forms, with or without

pyproject.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[build-system]
2+
requires = [
3+
"setuptools>=42",
4+
"wheel"
5+
]
6+
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
1-
[bdist_wheel]
2-
universal = 1
1+
[metadata]
2+
name = webstack-django-sorting
3+
version = 1.0.2
4+
author = Stéphane Raimbault
5+
author_email = [email protected]
6+
description = Easy sorting of tables with Django
7+
long_description = file: README.md
8+
long_description_content_type = text/markdown
9+
url = http://github.com/webstack/webstack-django-sorting
10+
project_urls =
11+
Bug Tracker = https://github.com/webstack/webstack-django-sorting/issues
12+
classifiers =
13+
Programming Language :: Python :: 3
14+
License :: OSI Approved :: BSD License
15+
Operating System :: OS Independent
16+
Intended Audience :: Developers,
17+
Natural Language :: English,
18+
Framework :: Django,
19+
Environment :: Web Environment,
20+
21+
[options]
22+
packages = find:
23+
python_requires = >=3.6
24+
install_requires =
25+
Django>=3.0,<4

setup.py

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

0 commit comments

Comments
 (0)