-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (42 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import os
import sys
from setuptools import find_packages, setup
version = "0.4.dev0"
def readfile(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
out = f.read()
return out
desc = '\n'.join([readfile('README.rst'), readfile('CHANGELOG.rst')])
setup(
name="mfw-template",
version=version,
description="Cookiecutter templates for Morp Framework",
long_description=desc,
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords="",
author="Izhar Firdaus",
author_email="[email protected]",
url="http://github.com/morpframework",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
include_package_data=True,
zip_safe=False,
install_requires=[
"cookiecutter>=1.7.2",
"click>=7.1.2",
"importscan",
"pyyaml>=4.2b1",
"cryptography",
# -*- Extra requirements: -*-
],
extras_require={
"docs": [
'sphinx-click'
]
},
entry_points={
"console_scripts": [
"mfw-template=mfw_template.cli:cli",
]
},
)