|
| 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 | + |
| 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