-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
143878b
commit dc7d6b3
Showing
10 changed files
with
30 additions
and
28 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import os | ||
import mpip | ||
import mmp | ||
|
||
def get_version_info(scope): | ||
versioninfo = 'mpip version {}'.format(mpip.__version__) | ||
versioninfo = 'mmp version {}'.format(mmp.__version__) | ||
|
||
if scope == 'mpip': | ||
if scope == 'mmp': | ||
return versioninfo | ||
|
||
raise ValueError("{} is not a valid version scope".format(scope)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,25 +2,24 @@ | |
import sys | ||
import json | ||
|
||
from mpip.cli.colors import bcolors | ||
# from setuptools.command.install import install | ||
from mmp.cli.colors import bcolors | ||
from setuptools import find_packages | ||
from setuptools import setup | ||
|
||
|
||
setup( | ||
name='mpip', | ||
name='mmp', | ||
version='0.0.1', | ||
authro='Alfonso Villaobos', | ||
author_email='[email protected]', | ||
url='https://github.com/alfonsocv12/mpip', | ||
url='https://github.com/alfonsocv12/mmp', | ||
license='MIT', | ||
description='mpip gives a faster way to handle pip librarys with a projects scope', | ||
description='MMP gives a faster way to handle pip librarys with a projects scope', | ||
packages=find_packages(exclude=['tests.*', 'tests']), | ||
long_description=open('readme.md', 'r').read(), | ||
long_description_content_type='text/markdown', | ||
entry_points={ | ||
'console_scripts': ['mpip=mpip.cli.main:main'] | ||
'console_scripts': ['mmp=mmp.cli.main:main'] | ||
}, | ||
install_requires=[ | ||
'virtualenv>=20.4.4', | ||
|