Skip to content

Commit 2ec8bbb

Browse files
authored
Merge pull request #10 from mslmio/haris/setup.py-fixes
haris/setup.py-fixes
2 parents 2020e82 + e14b771 commit 2ec8bbb

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,12 +1,12 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
from oxylabs.version import SDK_VERSION
44

55
long_description = """
66
The official Python library for the Oxylabs Scraper APIs.
77
88
Collect public data at scale with industry-leading web scraping solutions and the world's largest ethical proxy network.
9-
Documentation can be found at [https://github.com/mslmio/oxylabs-sdk-python](https://github.com/mslmio/oxylabs-sdk-python).
9+
Documentation can be found at https://github.com/mslmio/oxylabs-sdk-python.
1010
"""
1111

1212
setup(
@@ -18,6 +18,6 @@
1818
author="Oxylabs",
1919
author_email="[email protected]",
2020
license="MIT",
21-
packages=["oxylabs"],
21+
packages=find_packages(),
2222
install_requires=["aiohttp", "requests"],
2323
)

0 commit comments

Comments
 (0)