-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 949 Bytes
/
setup.py
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
from setuptools import setup
long_description = open('README.md').read()
setup(
name='mo-cli',
version='0.1',
description='CLI for mo cookiecutter projects',
long_description=long_description,
url='https://github.com/istrategylabs/mo-cli',
author='Sarah-Jaine Szekeresh',
author_email='[email protected]',
license='MIT',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules=['mo'],
install_requires=[
'click>=6.6,<7',
'cookiecutter>=1.4,<2',
'requests>=2.9.1,<3',
],
entry_points='''
[console_scripts]
mo=mo:cli
'''
)