- commit
- 6f1228495a06dd2095a3fb298aa1deb23ee988a9
- parent
- 55019329c45fbb0555884bbb34381d9d251483b7
- Author
- Tobias Bengfort <tobias.bengfort@posteo.de>
- Date
- 2023-11-05 09:35
switch to pyproject.toml
Diffstat
| A | pyproject.toml | 23 | +++++++++++++++++++++++ |
| D | setup.cfg | 21 | --------------------- |
| D | setup.py | 5 | ----- |
3 files changed, 23 insertions, 26 deletions
diff --git a/pyproject.toml b/pyproject.toml
@@ -0,0 +1,23 @@
-1 1 [build-system]
-1 2 requires = ["setuptools"]
-1 3 build-backend = "setuptools.build_meta"
-1 4
-1 5 [project]
-1 6 name = "boon"
-1 7 version = "0.0.0"
-1 8 description = "unix terminal framework"
-1 9 readme = "README.md"
-1 10 authors = [{name = "Tobias Bengfort", email = "tobias.bengfort@posteo.de"}]
-1 11 license = {text = "MIT"}
-1 12 classifiers = [
-1 13 "Environment :: Console :: Curses",
-1 14 "Intended Audience :: Developers",
-1 15 "Operating System :: POSIX :: Linux",
-1 16 "Programming Language :: Python",
-1 17 "License :: OSI Approved :: MIT License",
-1 18 "Topic :: Software Development :: User Interfaces",
-1 19 ]
-1 20 urls = {Homepage = "https://github.com/xi/boon"}
-1 21
-1 22 [tool.setuptools]
-1 23 py-modules = ["boon"]
diff --git a/setup.cfg b/setup.cfg
@@ -1,21 +0,0 @@1 -1 [metadata]2 -1 name=boon3 -1 version=0.0.04 -1 description=unix terminal framework5 -1 long-description=file:README.md6 -1 long_description_content_type=text/markdown7 -1 author=Tobias Bengfort8 -1 author-email=tobias.bengfort@posteo.de9 -1 home-page=https://github.com/xi/boon10 -1 license=MIT11 -1 license-file=LICENSE12 -1 classifiers=13 -1 Environment :: Console :: Curses14 -1 Intended Audience :: Developers15 -1 Operating System :: POSIX :: Linux16 -1 Programming Language :: Python17 -1 License :: OSI Approved :: MIT License18 -1 Topic :: Software Development :: User Interfaces19 -120 -1 [options]21 -1 py_modules=boon
diff --git a/setup.py b/setup.py
@@ -1,5 +0,0 @@1 -1 #!/usr/bin/env python2 -13 -1 from setuptools import setup4 -15 -1 setup()