-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Work with the latest version of pyinstaller. Bump version to v0.4.0
- Loading branch information
1 parent
c61f38a
commit 5ee6ab6
Showing
12 changed files
with
79 additions
and
66 deletions.
There are no files selected for viewing
Empty file.
Empty file.
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,4 +1,4 @@ | ||
WINPYTHON=C:/Python27/python.exe | ||
WINPYTHON=C:/python27/Scripts/pyinstaller.exe | ||
|
||
winexe: | ||
$(WINPYTHON) C:/Python27/pyinstaller-2.0/pyinstaller.py -y odel-runner.py | ||
$(WINPYTHON) -y --onefile odel-runner.py |
Empty file.
Empty file.
Empty file.
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
Empty file.
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,42 +1,42 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
"""setup.py: setuptools control.""" | ||
|
||
|
||
import re | ||
from setuptools import setup, find_packages | ||
|
||
|
||
version = re.search( | ||
'^__version__\s*=\s*"(.*)"', | ||
open('odel/odel.py').read(), | ||
re.M | ||
).group(1) | ||
|
||
|
||
with open("README.rst", "rb") as f: | ||
long_descr = f.read().decode("utf-8") | ||
|
||
|
||
setup( | ||
name = "cmdline-odel", | ||
packages = find_packages(exclude=['contrib', 'docs', 'tests*']), | ||
entry_points = { | ||
"console_scripts": ['odel = odel.odel:main'] | ||
}, | ||
install_requires = [ | ||
"argh", | ||
"argcomplete", | ||
"bunch", | ||
"suds", | ||
"requests", | ||
], | ||
version = version, | ||
description = "Odel uploads Data Integrator files to Tririga", | ||
long_description = long_descr, | ||
author = "Nithin Philips", | ||
author_email = "[email protected]", | ||
url = "", | ||
test_suite="odel.tests", | ||
) | ||
# -*- coding: utf-8 -*- | ||
|
||
|
||
"""setup.py: setuptools control.""" | ||
|
||
|
||
import re | ||
from setuptools import setup, find_packages | ||
|
||
|
||
version = re.search( | ||
'^__version__\s*=\s*"(.*)"', | ||
open('odel/odel.py').read(), | ||
re.M | ||
).group(1) | ||
|
||
|
||
with open("README.rst", "rb") as f: | ||
long_descr = f.read().decode("utf-8") | ||
|
||
|
||
setup( | ||
name = "cmdline-odel", | ||
packages = find_packages(exclude=['contrib', 'docs', 'tests*']), | ||
entry_points = { | ||
"console_scripts": ['odel = odel.odel:main'] | ||
}, | ||
install_requires = [ | ||
"argh", | ||
"argcomplete", | ||
"bunch", | ||
"suds", | ||
"requests", | ||
], | ||
version = version, | ||
description = "Odel uploads Data Integrator files to Tririga", | ||
long_description = long_descr, | ||
author = "Nithin Philips", | ||
author_email = "[email protected]", | ||
url = "", | ||
test_suite="odel.tests", | ||
) |
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ PROGRAM=Odel | |
|
||
CANDLE=candle | ||
LIGHT=light | ||
VERSION=0.3.0 | ||
VERSION=0.4.0 | ||
|
||
MSI_NAME="$(PROGRAM)-$(VERSION)" | ||
|
||
|
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