Skip to content

Commit d039ee8

Browse files
committed
release 0.0.1 :eggs: 🎡
1 parent da0550c commit d039ee8

9 files changed

+49
-7
lines changed

README.rst

+9
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,15 @@ Installation
2323
================================================================================
2424

2525

26+
You can install it via pip:
27+
28+
.. code-block:: bash
29+
30+
$ pip install gease
31+
32+
33+
or clone it and install it:
34+
2635
.. code-block:: bash
2736
2837
$ git clone http://github.com/chfw/gease.git

gease.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ contact: "[email protected]"
66
company: "Onni Software Ltd."
77
version: "0.0.1"
88
current_version: 0.0.1
9-
release: "0.0.0"
9+
release: "0.0.1"
1010
copyright_year: 2017
1111
command_line_interface: "gs"
1212
entry_point: "gease.main:main"
1313
include_doctest: true
14+
nodocs: true
1415
license: MIT
1516
dependencies:
1617
- crayons

gease/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
gease
33
~~~~~~~~~~~~~~~~~~~
44
5-
Do github release at command line
5+
Make github release at command line
66
77
:copyright: (c) 2017 by Onni Software Ltd.
88
:license: MIT License, see LICENSE for more details

gease/release.py

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
"""
2+
release
3+
~~~~~~~~~~~~~~~~~~~
4+
5+
Make github a release using github api
6+
7+
:copyright: (c) 2017 by Onni Software Ltd.
8+
:license: MIT License, see LICENSE for more details
9+
10+
"""
11+
112
from gease.rest import Api
213
from gease.uritemplate import UriTemplate
314
import gease.exceptions as exceptions

gease/rest.py

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
1-
import requests
2-
import gease.exceptions as exceptions
1+
"""
2+
rest
3+
~~~~~~~~~~~~~~~~~~~
4+
5+
Only use post interface
36
7+
:copyright: (c) 2017 by Onni Software Ltd.
8+
:license: MIT License, see LICENSE for more details
49
5-
MESSAGE_TAG_EXISTS = "Tag already exists"
10+
"""
11+
12+
import requests
13+
import gease.exceptions as exceptions
614

715

816
class Api(object):

gease/uritemplate.py

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
"""
2+
uritemplate
3+
~~~~~~~~~~~~~~~~~~~
4+
5+
template github uri with variables
6+
7+
:copyright: (c) 2017 by Onni Software Ltd.
8+
:license: MIT License, see LICENSE for more details
9+
10+
"""
11+
112
import re
213

314

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
''
2525
)
2626
URL = 'https://github.com/chfw/gease'
27-
DOWNLOAD_URL = '%s/archive/0.0.0.tar.gz' % URL
27+
DOWNLOAD_URL = '%s/archive/0.0.1.tar.gz' % URL
2828
FILES = ['README.rst', 'CHANGELOG.rst']
2929
KEYWORDS = [
3030
'python'

test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
pip freeze
2-
nosetests --with-coverage --cover-package gease --cover-package tests --with-doctest --doctest-extension=.rst README.rst tests docs/source gease && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long
2+
nosetests --with-coverage --cover-package gease --cover-package tests --with-doctest --doctest-extension=.rst README.rst tests gease && flake8 . --exclude=.moban.d --builtins=unicode,xrange,long

0 commit comments

Comments
 (0)