Skip to content

Commit fdc24f6

Browse files
committed
🤝 sync with latest pypi-mobans
1 parent 507e795 commit fdc24f6

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

.moban.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@ configuration:
33
- "git://github.com/moremoban/pypi-mobans.git?branch=dev&submodule=true!/templates"
44
- "git://github.com/moremoban/pypi-mobans.git?branch=dev&submodule=true!/statics"
55
- ".moban.d"
6-
- "pypi-mobans:templates"
76
configuration: "pypi-mobans-pkg.yml"
87
targets:
98
- "README.rst": CUSTOM_README.rst.jj2
10-
- "LICENSE": NEW_BSD_LICENSE.jj2
9+
- "LICENSE": newbsd_license.jj2
1110
- "setup.py": custom_setup.py.jj2
1211
- "requirements.txt": requirements.txt.jj2
1312
- "tests/requirements.txt": "tests/custom_requirements.txt.jj2"

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ notifications:
66
python:
77
- &pypy2 pypy2.7-6.0
88
- &pypy3 pypy3.5-6.0
9-
- 3.8-dev
9+
- 3.8
1010
- 3.7
1111
- 3.6
1212
- 3.5

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
#!/usr/bin/env python3
22

3-
# Template by pypi-mobans
3+
"""
4+
Template by pypi-mobans
5+
"""
6+
7+
import os
8+
import sys
49
import codecs
510
import locale
6-
import os
711
import platform
8-
import sys
912
from shutil import rmtree
1013

11-
from setuptools import Command, find_packages, setup
14+
from setuptools import Command, setup, find_packages
1215

1316
PY2 = sys.version_info[0] == 2
1417
PY26 = PY2 and sys.version_info[1] < 7
@@ -52,9 +55,7 @@
5255
"Programming Language :: Python :: 3.4",
5356
"Programming Language :: Python :: 3.5",
5457
"Programming Language :: Python :: 3.6",
55-
5658
"Programming Language :: Python :: 3.7",
57-
5859
"Programming Language :: Python :: 3.8",
5960

6061
]
@@ -64,8 +65,7 @@
6465
]
6566
SETUP_COMMANDS = {}
6667

67-
68-
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests"])
68+
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
6969
EXTRAS_REQUIRE = {
7070
}
7171
# You do not need to read beyond this line

0 commit comments

Comments
 (0)