Skip to content

Commit 47ec1dd

Browse files
committed
🥚 🎡 release to pypi
1 parent 3238903 commit 47ec1dd

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

README.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,15 @@ europython2018
1616
Installation
1717
================================================================================
1818

19-
You can get it:
19+
20+
You can install europython2018 via pip:
21+
22+
.. code-block:: bash
23+
24+
$ pip install europython2018
25+
26+
27+
or clone it and install it:
2028

2129
.. code-block:: bash
2230

docs/source/conf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
DESCRIPTION = (
3-
'show case' +
3+
'show case python package scaffold in 1 minute' +
44
''
55
)
66
# -*- coding: utf-8 -*-
@@ -24,11 +24,11 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = u'europython2018'
27-
copyright = u'2018 C.W.'
27+
copyright = u'2018 Onni Software Ltd.'
2828
author = u'C.W.'
2929

3030
# The short X.Y version
31-
version = u'0.0.0'
31+
version = u'0.0.1'
3232
# The full version, including alpha/beta/rc tags
3333
release = u'0.0.1'
3434

@@ -137,7 +137,7 @@
137137
# author, documentclass [howto, manual, or own class]).
138138
latex_documents = [
139139
(master_doc, 'europython2018.tex', u'europython2018 Documentation',
140-
u'C.W.', 'manual'),
140+
u'Onni Software Ltd.', 'manual'),
141141
]
142142

143143

@@ -174,7 +174,7 @@
174174
texinfo_documents = [
175175
('index', 'europython2018',
176176
'europython2018 Documentation',
177-
'C.W.', 'europython2018',
177+
'Onni Software Ltd.', 'europython2018',
178178
DESCRIPTION,
179179
'Miscellaneous'),
180180
]

europython2018.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: "europython2018"
22
organisation: "moremoban"
33
author: "C.W."
4-
contact: "none"
5-
company: "C.W."
4+
contact: "wangc_2011@hotmail.com"
5+
company: "Onni Software Ltd."
66
version: "0.0.1"
77
current_version: "0.0.1"
8-
release: "0.0.0"
8+
release: "0.0.1"
99
copyright_year: 2018
1010
command_line_interface: "ep18"
1111
entry_point: "europython2018.main:main"
1212
license: Unlicense
1313
dependencies: []
14-
description: "show case"
14+
description: "show case python package scaffold in 1 minute"

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
NAME = 'europython2018'
1313
AUTHOR = 'C.W.'
1414
VERSION = '0.0.1'
15-
EMAIL = 'none'
15+
EMAIL = 'wangc_2011@hotmail.com'
1616
LICENSE = 'Unlicense'
1717
ENTRY_POINTS = {
1818
'console_scripts': [
1919
'ep18 = europython2018.main:main'
2020
],
2121
}
2222
DESCRIPTION = (
23-
'show case'
23+
'show case python package scaffold in 1 minute'
2424
)
2525
URL = 'https://github.com/moremoban/europython2018'
26-
DOWNLOAD_URL = '%s/archive/0.0.0.tar.gz' % URL
26+
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
2727
FILES = ['README.rst', 'CHANGELOG.rst']
2828
KEYWORDS = [
2929
'python'
@@ -51,8 +51,8 @@
5151
# You do not need to read beyond this line
5252
PUBLISH_COMMAND = '{0} setup.py sdist bdist_wheel upload -r pypi'.format(
5353
sys.executable)
54-
GS_COMMAND = ('gs europython2018 v0.0.0 ' +
55-
"Find 0.0.0 in changelog for more details")
54+
GS_COMMAND = ('gs europython2018 v0.0.1 ' +
55+
"Find 0.0.1 in changelog for more details")
5656
NO_GS_MESSAGE = ('Automatic github release is disabled. ' +
5757
'Please install gease to enable it.')
5858
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)