update setup.py and manifest

so we dont upload the test to pypi.
This commit is contained in:
heyyo
2018-06-23 13:55:50 +02:00
parent 35f8eb0f0a
commit 5c07bc5c09
2 changed files with 3 additions and 9 deletions

View File

@@ -1,6 +1 @@
recursive-include bw_plex/audfprint *.txt *.py LICENSE Makefile *.md .gitignore
# Only way the damn tests seems to be removed
exclude *
# Make sure we include normal files in the root dir.
include *.in *.txt *.md *.cfg *.py
recursive-exclude tests *

View File

@@ -5,7 +5,6 @@ https://packaging.python.org/en/latest/distributing.html
https://github.com/pypa/sampleproject
"""
import os
from setuptools import setup, find_packages
# Possibly convert the README.md to .rst-format
@@ -32,7 +31,7 @@ setup(
# https://packaging.python.org/en/latest/single_source_version.html
use_scm_version=True,
setup_requires=['setuptools_scm', 'pypandoc'],
#version='0.0.1',
# version='0.0.1',
description='Skip intros.',
long_description=README,
@@ -69,7 +68,7 @@ setup(
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(),
packages=find_packages(exclude=['tests']),
include_package_data=True,