Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: setup.py to properly package the sdk #38

Merged
merged 2 commits into from
Jun 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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