boon

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

commit
6cd849b26fc66795b293f021cd18f304d0047d26
parent
25290a5f9fc5ab9fbb82155ea3832d612a156216
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-10-25 08:20
mv package information to setup.cfg

Diffstat

A setup.cfg 21 +++++++++++++++++++++
M setup.py 23 +----------------------

2 files changed, 22 insertions, 22 deletions


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

@@ -0,0 +1,21 @@
   -1     1 [metadata]
   -1     2 name=boon
   -1     3 version=0.0.0
   -1     4 description=unix terminal framework
   -1     5 long-description=file:README.md
   -1     6 long_description_content_type=text/markdown
   -1     7 author=Tobias Bengfort
   -1     8 author-email=tobias.bengfort@posteo.de
   -1     9 home-page=https://github.com/xi/boon
   -1    10 license=MIT
   -1    11 license-file=LICENSE
   -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 [options]
   -1    21 py_modules=boon

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

@@ -2,25 +2,4 @@
    2     2 
    3     3 from setuptools import setup
    4     4 
    5    -1 README = open('README.md').read()
    6    -1 
    7    -1 
    8    -1 setup(
    9    -1     name='boon',
   10    -1     version='0.0.0',
   11    -1     description='unix terminal framework',
   12    -1     long_description=README,
   13    -1     url='https://github.com/xi/boon',
   14    -1     author='Tobias Bengfort',
   15    -1     author_email='tobias.bengfort@posteo.de',
   16    -1     py_modules=['boon'],
   17    -1     license='MIT',
   18    -1     classifiers=[
   19    -1         'Environment :: Console :: Curses',
   20    -1         'Intended Audience :: Developers',
   21    -1         'Operating System :: POSIX :: Linux',
   22    -1         'Programming Language :: Python',
   23    -1         'License :: OSI Approved :: MIT License',
   24    -1         'Topic :: Software Development :: User Interfaces',
   25    -1     ],
   26    -1 )
   -1     5 setup()