Skip to content

Commit 3c6accc

Browse files
committed
Migrated setup.cfg to new pyproject.toml
1 parent fab47d1 commit 3c6accc

File tree

3 files changed

+55
-53
lines changed

3 files changed

+55
-53
lines changed

pyproject.toml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
[build-system]
2+
requires = ["setuptools"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "django-kmuhelper"
7+
description = "Ein Helfer für schweizer KMU"
8+
readme = "README.md"
9+
authors = [{ name = "Rafael Urben", email = "github@rafaelurben.ch" }]
10+
maintainers = [{ name = "Rafael Urben", email = "github@rafaelurben.ch" }]
11+
license = { file = "LICENSE" }
12+
classifiers = [
13+
"Environment :: Web Environment",
14+
"Framework :: Django",
15+
"Framework :: Django :: 4.2",
16+
"Framework :: Django :: 5.0",
17+
"Framework :: Django :: 5.1",
18+
"Intended Audience :: Developers",
19+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
20+
"Operating System :: OS Independent",
21+
"Programming Language :: Python",
22+
"Programming Language :: Python :: 3",
23+
"Programming Language :: Python :: 3 :: Only",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
26+
"Programming Language :: Python :: 3.12",
27+
"Topic :: Internet :: WWW/HTTP",
28+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
29+
]
30+
requires-python = ">= 3.10"
31+
dependencies = [
32+
"Django>=4.2.0",
33+
"requests>=2.26.0",
34+
"WooCommerce>=3.0.0",
35+
"reportlab>=3.6.3",
36+
"rich>=10.15.2",
37+
"packaging>=21.3",
38+
"defusedxml>=0.7.1",
39+
]
40+
dynamic = ["version"]
41+
42+
[project.urls]
43+
Homepage = "https://rafaelurben.github.io/django-kmuhelper"
44+
Docs = "https://rafaelurben.github.io/django-kmuhelper"
45+
GitHub = "https://github.com/rafaelurben/django-kmuhelper"
46+
Issues = "https://github.com/rafaelurben/django-kmuhelper/issues"
47+
48+
[tool.setuptools]
49+
include-package-data = true
50+
51+
[tool.setuptools.packages]
52+
find = { namespaces = false }
53+
54+
[tool.setuptools.dynamic]
55+
version = { file = ["_version.txt"] }

setup.cfg

-50
This file was deleted.

setup.py

-3
This file was deleted.

0 commit comments

Comments
 (0)