-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.28 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from distutils.core import setup
import tui
setup(name='tui',
version=tui.__version__,
description='Quickly add competent and helpful configuration to your python programs.',
platforms='OS Independent',
author='Joel Hedlund',
author_email='[email protected]',
url='https://sourceforge.net/projects/python-tui/',
download_url='https://sourceforge.net/projects/python-tui/',
packages=['tui'],
license=open('LICENSE.txt').read(),
long_description='\n' + open('README.txt').read(),
classifiers=[
#'Development Status :: 5 - Production/Stable',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: User Interfaces',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
)