Skip to content

Commit

Permalink
fix: setup.py to properly package the sdk
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs committed Jun 28, 2024
1 parent 0a75dba commit 7a2af9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import sys
from setuptools import setup, find_packages
from setuptools import setup
from pathlib import Path

# Don't import rudder_analytics module here, since deps may not be installed
Expand All @@ -12,6 +12,8 @@
"requests>=2.32.3,<3.0",
"monotonic>=1.6,<2.0",
"backoff>=2.2.1,<3.0",
"python-dateutil>=2.2,<3.0",
"python-dotenv>=1.0.1,<2.0.0",
"deprecation>=2.1.0,<3.0.0",
]

Expand All @@ -29,7 +31,7 @@
maintainer='RudderStack',
maintainer_email='[email protected]',
test_suite='rudderstack.analytics.test.all',
packages=find_packages(exclude=["tests*"]),
packages=['rudderstack.analytics', 'rudderstack.analytics.test'],
python_requires='>=3.8.0',
license='MIT License',
install_requires=install_requires,
Expand Down

0 comments on commit 7a2af9d

Please sign in to comment.