Skip to content

Commit 1d2cee3

Browse files
committed
Merge branch 'release-0.0.3'
2 parents 70bcff5 + ec6cde2 commit 1d2cee3

File tree

5 files changed

+30
-19
lines changed

5 files changed

+30
-19
lines changed

.gitlab-ci.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,5 @@
1919
variables:
2020
'TOXENV': 'py37'
2121

22-
'test py38 dev':
23-
<<: *job_test_common
24-
allow_failure: true
25-
image: 'python:3.8-rc'
26-
variables:
27-
'TOXENV': 'py38'
28-
2922

3023
... EOF

.travis.yml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,7 @@ language: 'python'
77

88
python:
99
- '3.6'
10-
- '3.6-dev'
1110
- '3.7'
12-
- '3.7-dev'
13-
- '3.8-dev'
14-
15-
matrix:
16-
allow_failures:
17-
- python: '3.6-dev'
18-
- python: '3.7-dev'
19-
- python: '3.8-dev'
20-
fast_finish: true
2111

2212
install:
2313
- 'python3 -m pip install tox tox-travis tox-venv'

CHANGELOG.rst

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@
22
33

44
.. Keep the current version number on line number 5
5+
0.0.3
6+
=====
7+
8+
2019-10-03
9+
10+
* Improve packaging
11+
12+
513
0.0.2
6-
==========
14+
=====
715

816
2019-06-11
917

README.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ Introduction
77
Build ``zipapp`` single file Python applications easily.
88

99

10+
Repositories
11+
------------
12+
13+
Binary distributions:
14+
15+
* https://pypi.org/project/zapp/
16+
17+
Source code:
18+
19+
* https://gitlab.com/sinoroc/zapp
20+
* https://github.com/sinoroc/zapp
21+
22+
1023
Usage
1124
=====
1225

setup.cfg

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,21 @@ strict = 1
1414
name = zapp
1515
author = sinoroc
1616
author_email = sinoroc.code+python@gmail.com
17-
description = zapp application
17+
description = Build zipapp single file Python applications easily
1818
license = Apache-2.0
19+
license_file = LICENSE.txt
1920
long_description = file: README.rst
2021
long_description_content_type = text/x-rst
22+
project_urls =
23+
GitLab = https://gitlab.com/sinoroc/zapp
24+
GitHub = https://github.com/sinoroc/zapp
2125
url = https://pypi.org/project/zapp
2226

2327

2428
[options]
2529
install_requires =
2630
importlib_metadata
31+
setuptools
2732
wheel
2833
package_dir =
2934
= src
@@ -42,6 +47,8 @@ package =
4247
twine
4348
wheel
4449
test =
50+
astroid<2.3
51+
pylint<2.4
4552
pytest
4653
pytest-pep8
4754
pytest-pylint

0 commit comments

Comments
 (0)