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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# -*- coding: utf-8 -*-
from setuptools import setup
package_dir = \
{'': 'src'}
packages = \
['clikit',
'clikit.adapter',
'clikit.api',
'clikit.api.application',
'clikit.api.args',
'clikit.api.args.format',
'clikit.api.command',
'clikit.api.config',
'clikit.api.event',
'clikit.api.formatter',
'clikit.api.io',
'clikit.api.resolver',
'clikit.args',
'clikit.args.inputs',
'clikit.config',
'clikit.formatter',
'clikit.handler',
'clikit.handler.help',
'clikit.io',
'clikit.io.input_stream',
'clikit.io.output_stream',
'clikit.resolver',
'clikit.ui',
'clikit.ui.alignment',
'clikit.ui.components',
'clikit.ui.help',
'clikit.ui.layout',
'clikit.ui.style',
'clikit.utils']
package_data = \
{'': ['*']}
install_requires = \
['pastel>=0.2.0,<0.3.0', 'pylev>=1.3,<2.0']
extras_require = \
{':python_version >= "2.7" and python_version < "2.8"': ['enum34>=1.1,<2.0'],
':python_version >= "2.7" and python_version < "2.8" or python_version >= "3.4" and python_version < "3.5"': ['typing>=3.6,<4.0'],
':python_version >= "3.5" and python_full_version < "3.5.4"': ['typing-extensions>=3.6,<4.0'],
':python_version >= "3.6" and python_version < "4.0"': ['crashtest>=0.3.0,<0.4.0']}
setup_kwargs = {
'name': 'clikit',
'version': '0.6.2',
'description': 'CliKit is a group of utilities to build beautiful and testable command line interfaces.',
'long_description': '# CliKit\n\nCliKit is a group of utilities to build beautiful and testable command line interfaces.\n\nThis is at the core of [Cleo](https://github.com/sdispater/cleo).\n',
'author': 'Sébastien Eustace',
'author_email': 'sebastien@eustace.io',
'maintainer': None,
'maintainer_email': None,
'url': 'https://github.com/sdispater/clikit',
'package_dir': package_dir,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'extras_require': extras_require,
'python_requires': '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
}
setup(**setup_kwargs)
|