Skip to content

Commit

Permalink
🤝 sync with latest pypi-mobans
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jan 14, 2020
1 parent 507e795 commit fdc24f6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .moban.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ configuration:
- "git://github.com/moremoban/pypi-mobans.git?branch=dev&submodule=true!/templates"
- "git://github.com/moremoban/pypi-mobans.git?branch=dev&submodule=true!/statics"
- ".moban.d"
- "pypi-mobans:templates"
configuration: "pypi-mobans-pkg.yml"
targets:
- "README.rst": CUSTOM_README.rst.jj2
- "LICENSE": NEW_BSD_LICENSE.jj2
- "LICENSE": newbsd_license.jj2
- "setup.py": custom_setup.py.jj2
- "requirements.txt": requirements.txt.jj2
- "tests/requirements.txt": "tests/custom_requirements.txt.jj2"
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ notifications:
python:
- &pypy2 pypy2.7-6.0
- &pypy3 pypy3.5-6.0
- 3.8-dev
- 3.8
- 3.7
- 3.6
- 3.5
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
#!/usr/bin/env python3

# Template by pypi-mobans
"""
Template by pypi-mobans
"""

import os
import sys
import codecs
import locale
import os
import platform
import sys
from shutil import rmtree

from setuptools import Command, find_packages, setup
from setuptools import Command, setup, find_packages

PY2 = sys.version_info[0] == 2
PY26 = PY2 and sys.version_info[1] < 7
Expand Down Expand Up @@ -52,9 +55,7 @@
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",

"Programming Language :: Python :: 3.7",

"Programming Language :: Python :: 3.8",

]
Expand All @@ -64,8 +65,7 @@
]
SETUP_COMMANDS = {}


PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests"])
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
EXTRAS_REQUIRE = {
}
# You do not need to read beyond this line
Expand Down

0 comments on commit fdc24f6

Please sign in to comment.