-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 903 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 find_packages
from setuptools import setup
setup(
name='mmp',
version='0.2.1',
author='Alfonso Villaobos',
author_email='[email protected]',
url='https://github.com/alfonsocv12/mmp',
license='MIT',
description='mmp handle your py_modules easier and faster',
packages=find_packages(exclude=['tests.*', 'tests']),
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
entry_points={
'console_scripts': [
'mmp=mmp.cli.main:main',
'mex=mmp.cli.mex:main'
]
},
install_requires=[
'virtualenv>=20.4.4',
'docopt==0.6.2'
],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)