Skip to content

Commit 60ef392

Browse files
jaygel179darinhoward
authored andcommitted
update setup to search for packages and updated readme
1 parent 85a9a20 commit 60ef392

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python
2-
from setuptools import setup
2+
import setuptools
33
import re
44
import ast
55

@@ -19,12 +19,12 @@
1919
f = f.read()
2020
version = ast.literal_eval(version_re.search(f).group(1))
2121

22-
setup(
22+
setuptools.setup(
2323
name='stackify-api-python',
2424
version=version,
2525
author='Stackify',
2626
author_email='support@stackify.com',
27-
packages=['stackify'],
27+
packages=setuptools.find_packages(exclude=("tests", "*tests", "tests*",)),
2828
url='https://github.com/stackify/stackify-api-python',
2929
description='Stackify API for Python',
3030
long_description=long_description,

0 commit comments

Comments
 (0)