42 lines
927 B
Python
42 lines
927 B
Python
from setuptools import setup
|
|
|
|
|
|
with open('readme.md') as f:
|
|
long_description = f.read()
|
|
|
|
|
|
setup(
|
|
name='magicli',
|
|
version='0.1.0',
|
|
description='Automatically call args parsed by `docopt` as functions.',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
install_requires=[
|
|
'docopt'
|
|
],
|
|
extras_require={
|
|
'tests':[
|
|
'pytest',
|
|
]
|
|
},
|
|
package_dir={'': 'src'},
|
|
keywords=[
|
|
'python',
|
|
'docopt',
|
|
'cli'
|
|
],
|
|
classifiers=[
|
|
"Development Status :: 1 - Planning",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Operating System :: Unix",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
entry_points={
|
|
'console_scripts':[
|
|
'magicli_example=example:cli'
|
|
]
|
|
},
|
|
)
|