Skip to content

Commit

Permalink
fix: setup.py to properly package the sdk (#38)
Browse files Browse the repository at this point in the history
* fix: setup.py to properly package the sdk

* chore: bump version
  • Loading branch information
saikumarrs committed Jun 28, 2024
1 parent 0a75dba commit 73f1a72
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rudderstack/analytics/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '2.1.2'
VERSION = '2.1.3'
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 73f1a72

Please sign in to comment.