boon

unix terminal framework
git clone https://git.ce9e.org/boon.git

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=boon
    3    -1 version=0.0.0
    4    -1 description=unix terminal framework
    5    -1 long-description=file:README.md
    6    -1 long_description_content_type=text/markdown
    7    -1 author=Tobias Bengfort
    8    -1 author-email=tobias.bengfort@posteo.de
    9    -1 home-page=https://github.com/xi/boon
   10    -1 license=MIT
   11    -1 license-file=LICENSE
   12    -1 classifiers=
   13    -1     Environment :: Console :: Curses
   14    -1     Intended Audience :: Developers
   15    -1     Operating System :: POSIX :: Linux
   16    -1     Programming Language :: Python
   17    -1     License :: OSI Approved :: MIT License
   18    -1     Topic :: Software Development :: User Interfaces
   19    -1 
   20    -1 [options]
   21    -1 py_modules=boon

diff --git a/setup.py b/setup.py

@@ -1,5 +0,0 @@
    1    -1 #!/usr/bin/env python
    2    -1 
    3    -1 from setuptools import setup
    4    -1 
    5    -1 setup()