Skip to content

Commit

Permalink
release 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisChV committed Feb 22, 2019
1 parent c42fb73 commit 88cb769
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 10 deletions.
2 changes: 0 additions & 2 deletions dev-things

This file was deleted.

3 changes: 0 additions & 3 deletions makefile
Expand Up @@ -21,9 +21,6 @@ build:
python setup.py bdist_wheel


upload:
python -m twine upload dist/*

clean:
rm -Rf ravegen/*.pyc
rm -Rf ravegen/ConsoleEngine/*.pyc
Expand Down
2 changes: 1 addition & 1 deletion ravegen/Utils/commandManager.py
Expand Up @@ -71,7 +71,7 @@ def runPythonSiteCommand(writeFile):
_executeCommand(sad._LINUX_PYTHON_COMMAND_, sad._LINUX_PYTHON_M_OPTION_, [sad._LINUX_PYTHON_SITE_OPTION_, sad._LINUX_PYTHON_USER_SITE_OPTION_], writeFile=writeFile)

def runPipShowRavegen(writeFile):
_executeCommand(sad._LINUX_PIP_COMMAND_, sad._LINUX_PIP_SHOW_OPTION_, [sad._RAVEGEN_DEV_NAME_], writeFile=writeFile)
_executeCommand(sad._LINUX_PIP_COMMAND_, sad._LINUX_PIP_SHOW_OPTION_, [sad._RAVEGEN_SRC_PATH_], writeFile=writeFile)

def runHerokuCreateCommand(projectName):
_executeCommand(sad._LINUX_HEROKU_COMMAND_, sad._LINUX_HEROKU_CREATE_OPTION_, [projectName])
Expand Down
2 changes: 1 addition & 1 deletion ravegen/ravegen
Expand Up @@ -7,7 +7,7 @@ args = ""
for i in range(1,len(sys.argv)):
args += " " + sys.argv[i]

command = "pip show ravegen-dev > .tempPythonFile"
command = "pip show ravegen > .tempPythonFile"
os.system(command)
tempFile = open(".tempPythonFile", 'r')
pythonPath = None
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -10,8 +10,8 @@
long_description = fh.read()

setuptools.setup(
name="ravegen-dev",
version="0.2.3",
name="ravegen",
version="0.2.1",
scripts=['ravegen/ravegen'],
author="Christofer Chavez Carazas",
author_email="xnpiochv@gmail.com",
Expand All @@ -23,7 +23,7 @@
],
package_data={'ravegen': ["LICENSE", "rave_compl.bash", "ravegen/commands"]},
include_package_data=True,
url="https://github.com/ChrisChV/RaveGen-Telegram-bot-generator/tree/developing",
url="https://github.com/ChrisChV/RaveGen-Telegram-bot-generator",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 2.7",
Expand Down

0 comments on commit 88cb769

Please sign in to comment.