Skip to content

Commit 77a5b0f

Browse files
committed
PyPi files added
1 parent 4ad2e81 commit 77a5b0f

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name='ConsoleMenu',
5+
packages=['consolemenu'],
6+
version='1.0.0',
7+
license='MIT',
8+
description='Simplest console menu you\'ve ever seen.\n'
9+
'Made on dicts, it allows you to easily implement a console menu '
10+
'without a number of classes like \'MenuItem\', etc.\n'
11+
'Just setup a dict, type a title and that\'s all.',
12+
author='Egor Almikeev',
13+
author_email='[email protected]',
14+
url='https://github.com/EgorAlmikeev/ConsoleMenu',
15+
download_url='https://github.com/EgorAlmikeev/ConsoleMenu/archive/v1.0.0.tar.gz',
16+
keywords=['CONSOLE', 'MENU', 'CONSOLEMENU'],
17+
install_requires=[],
18+
classifiers=[
19+
'Development Status :: 5 - Production/Stable',
20+
'Intended Audience :: Developers',
21+
'Topic :: Software Development :: Build Tools',
22+
'License :: OSI Approved :: MIT License',
23+
'Programming Language :: Python :: 3',
24+
'Programming Language :: Python :: 3.4',
25+
'Programming Language :: Python :: 3.5',
26+
'Programming Language :: Python :: 3.6',
27+
'Programming Language :: Python :: 3.7',
28+
],
29+
)

0 commit comments

Comments
 (0)