Skip to content

Commit 5f8160f

Browse files
author
Bas Wind
authored
Exclude tests directory from package data (sendgrid#132)
1 parent b950508 commit 5f8160f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import io
22
import os
33
from distutils.file_util import copy_file
4-
from setuptools import find_packages, setup
4+
from setuptools import setup
55

66

77
dir_path = os.path.abspath(os.path.dirname(__file__))
@@ -21,7 +21,7 @@
2121
author_email='dx@sendgrid.com',
2222
url='{}python-http-client'.format(base_url),
2323
download_url='{}python-http-client/tarball/{}'.format(base_url, version),
24-
packages=find_packages(),
24+
packages=['python_http_client'],
2525
include_package_data=True,
2626
license='MIT',
2727
description='HTTP REST client, simplified for Python',

0 commit comments

Comments
 (0)