-
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
4 changed files
with
23 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
name: "europython2018" | ||
organisation: "moremoban" | ||
author: "C.W." | ||
contact: "none" | ||
company: "C.W." | ||
contact: "[email protected]" | ||
company: "Onni Software Ltd." | ||
version: "0.0.1" | ||
current_version: "0.0.1" | ||
release: "0.0.0" | ||
release: "0.0.1" | ||
copyright_year: 2018 | ||
command_line_interface: "ep18" | ||
entry_point: "europython2018.main:main" | ||
license: Unlicense | ||
dependencies: [] | ||
description: "show case" | ||
description: "show case python package scaffold in 1 minute" |
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 |
---|---|---|
|
@@ -12,18 +12,18 @@ | |
NAME = 'europython2018' | ||
AUTHOR = 'C.W.' | ||
VERSION = '0.0.1' | ||
EMAIL = 'none' | ||
EMAIL = '[email protected]' | ||
LICENSE = 'Unlicense' | ||
ENTRY_POINTS = { | ||
'console_scripts': [ | ||
'ep18 = europython2018.main:main' | ||
], | ||
} | ||
DESCRIPTION = ( | ||
'show case' | ||
'show case python package scaffold in 1 minute' | ||
) | ||
URL = 'https://github.com/moremoban/europython2018' | ||
DOWNLOAD_URL = '%s/archive/0.0.0.tar.gz' % URL | ||
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL | ||
FILES = ['README.rst', 'CHANGELOG.rst'] | ||
KEYWORDS = [ | ||
'python' | ||
|
@@ -51,8 +51,8 @@ | |
# 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 europython2018 v0.0.0 ' + | ||
"Find 0.0.0 in changelog for more details") | ||
GS_COMMAND = ('gs europython2018 v0.0.1 ' + | ||
"Find 0.0.1 in changelog for more details") | ||
NO_GS_MESSAGE = ('Automatic github release is disabled. ' + | ||
'Please install gease to enable it.') | ||
UPLOAD_FAILED_MSG = ( | ||
|