-
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
Showing
10 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
|
@@ -7,6 +7,7 @@ name = 'pypi' | |
python_version= '3.6' | ||
|
||
[packages] | ||
moban = '>=0.8.1' | ||
|
||
[dev-packages] | ||
nose = "*" | ||
|
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
__version__ = "0.0.1" | ||
__version__ = "0.0.2" | ||
__author__ = "chfw" |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
moban>=0.8.1 |
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 |
---|---|---|
|
@@ -32,14 +32,14 @@ | |
|
||
NAME = "moban-ansible" | ||
AUTHOR = "chfw" | ||
VERSION = "0.0.1" | ||
VERSION = "0.0.2" | ||
EMAIL = "[email protected]" | ||
LICENSE = "newbsd" | ||
DESCRIPTION = ( | ||
"Ansible filters, tests and utility functions for moban users" | ||
) | ||
URL = "https://github.com/moremoban/moban-ansible" | ||
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL | ||
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL | ||
FILES = ["README.rst", "CHANGELOG.rst"] | ||
KEYWORDS = [ | ||
"python", | ||
|
@@ -62,15 +62,17 @@ | |
|
||
|
||
INSTALL_REQUIRES = [ | ||
"moban>=0.8.1", | ||
] | ||
SETUP_COMMANDS = {} | ||
|
||
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"]) | ||
EXTRAS_REQUIRE = {} | ||
EXTRAS_REQUIRE = { | ||
} | ||
# You do not need to read beyond this line | ||
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable) | ||
GS_COMMAND = ("gs moban-ansible v0.0.1 " + | ||
"Find 0.0.1 in changelog for more details") | ||
GS_COMMAND = ("gs moban-ansible v0.0.2 " + | ||
"Find 0.0.2 in changelog for more details") | ||
NO_GS_MESSAGE = ("Automatic github release is disabled. " + | ||
"Please install gease to enable it.") | ||
UPLOAD_FAILED_MSG = ( | ||
|