Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 5795d40

Browse files
committed
moved /tests to /CloudFlare/tests. Removed find_package - as it was installing /tests and conflicting with other packages
1 parent 5622686 commit 5795d40

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
"""Cloudflare API code - setup.py file"""
33
import re
4-
from setuptools import setup, find_packages
4+
from setuptools import setup
55

66
_version_re = re.compile(r"__version__\s=\s'(.*)'")
77

@@ -26,7 +26,8 @@ def main():
2626
url='https://github.com/cloudflare/python-cloudflare',
2727
license='MIT',
2828
options={"bdist_wheel": {"universal": True}},
29-
packages=['cli4', 'examples']+find_packages(),
29+
packages=['CloudFlare', 'cli4', 'examples'],
30+
test_suite="CloudFlare.tests",
3031
include_package_data=True,
3132
data_files = [('share/man/man1', ['cli4/cli4.1'])],
3233
install_requires=['requests', 'pyyaml', 'jsonlines'],

0 commit comments

Comments
 (0)