Skip to content

Commit

Permalink
Fix: wheel packages includes (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
avara1986 committed Feb 28, 2020
1 parent 1c6638c commit 8e5aa03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
6 changes: 5 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
include README.md
include requirements.txt
include requirements-tests.txt
recursive-include pyms *
recursive-include pyms *
recursive-exclude tests *
recursive-exclude examples *
prune tests
prune examples
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# -*- coding: utf-8 -*-
# Copyright (c) 2018 by Alberto Vara <albertovara@paradigmadigital.com>
import codecs
import json
import os

import json
from setuptools import setup, find_packages

author = __import__('pyms').__author__
Expand All @@ -15,8 +15,6 @@
else:
long_description = ''



install_requires = []
tests_require = []
if os.path.exists('Pipfile.lock'):
Expand Down Expand Up @@ -52,7 +50,8 @@
keywords="",
url='https://github.com/python-microservices/pyms/',
test_suite='nose.collector',
packages=find_packages(),
packages=find_packages(
exclude=['*.tests', '*.tests.*', 'tests.*', 'tests', '*.examples', '*.examples.*', 'examples.*', 'examples']),
install_requires=install_requires,
tests_require=tests_require,
include_package_data=True,
Expand Down

0 comments on commit 8e5aa03

Please sign in to comment.