magicli/setup.py

14 lines
183 B
Python

from setuptools import setup
setup(
name='magicli',
version='0.1.0',
extras_require = {
'tests': [
'pytest',
'docopt',
]
}
)