23 lines
444 B
Python
23 lines
444 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
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,
|
|
packages=find_packages(),
|
|
install_requires=[],
|
|
extras_require={
|
|
'tests':[
|
|
'pytest',
|
|
]
|
|
},
|
|
keywords=[],
|
|
classifiers=[],
|
|
)
|