-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (23 loc) · 961 Bytes
/
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
from distutils.core import setup
setup(name='cliask',
version='0.0.4',
py_modules=['cliask'],
data_files=[('', ['LICENSE.org', 'README.org'])],
description='A module for getting validated user input via the console',
author='Sleft',
author_email='fte08eas@student.lu.se',
license='LICENSE.org',
url='https://github.com/Sleft/cliask',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers',
'Environment :: Console',
'License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication',
'Operating System :: OS Independent',
'Topic :: Software Development :: User Interfaces',
'Topic :: System :: Shells',
'Topic :: Software Development :: Libraries :: Python Modules'
],
long_description=open('README.org').read())