-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 827 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
import re
from setuptools import setup
with open("moduledev/__init__.py") as f:
version = re.search(r"__version__ = '(.*?)'", f.read()).group(1)
setup(
name='moduledev',
version=version,
packages=['moduledev'],
license='MIT',
install_requires=['click', 'PyYAML', 'colorama'],
entry_points={
'console_scripts': ['moduledev=moduledev.cli:mdcli']
},
options={
'build_scripts': {
'executable': '/usr/bin/env python3',
},
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
author='Bob Zimmermann',
author_email='[email protected]',
description='''
A set of utilities for developing environment modules
'''
)