Skip to content

Commit

Permalink
update setup.py and manifest
Browse files Browse the repository at this point in the history
so we dont upload the test to pypi.
  • Loading branch information
heyyo committed Jun 23, 2018
1 parent 35f8eb0 commit 5c07bc5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
7 changes: 1 addition & 6 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -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 *
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
https://github.com/pypa/sampleproject
"""

import os
from setuptools import setup, find_packages

# Possibly convert the README.md to .rst-format
Expand All @@ -32,7 +31,7 @@
# 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,
Expand Down Expand Up @@ -69,7 +68,7 @@

# 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,


Expand Down

0 comments on commit 5c07bc5

Please sign in to comment.