Skip to content

Commit d063ccd

Browse files
jayvdbchfw
authored andcommitted
📰 Add tests and LICENSE to sdist (#28)
* 📰 Add tests and LICENSE to sdist Also exclude tests.* from the runtime installation. Fixes #27 * 🔥 remove Python 3.4 test and add Python 3.8
1 parent 9def59d commit d063ccd

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ sudo: false
22
language: python
33
python:
44
- pypy
5-
- 3.7-dev
5+
- 3.8
6+
- 3.7
67
- 3.6
78
- 3.5
8-
- 3.4
99
- 2.7
1010
notifications:
1111
email: false

MANIFEST.in

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
include LICENSE
12
include README.rst
23
include CONTRIBUTORS.rst
34
include CHANGELOG.rst
45
recursive-include yehua/resources *
6+
recursive-include tests *.py
7+
recursive-include tests *.txt
8+
recursive-include tests *.yml
9+
recursive-include tests Makefile

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
SETUP_COMMANDS = {}
7575

7676

77-
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests"])
77+
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
7878
EXTRAS_REQUIRE = {
7979
}
8080
# You do not need to read beyond this line

0 commit comments

Comments
 (0)