boon

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

commit
26fa20d509cb49c85c731f2ca1b36f71293ccd96
parent
d2c215ddae1d89a449eeb074b05292e4c3d9d5ad
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-08-20 11:43
add setup.py

Diffstat

A setup.py 26 ++++++++++++++++++++++++++

1 files changed, 26 insertions, 0 deletions


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

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