-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
86c7222
commit 2ba5302
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,18 +2,18 @@ | |
|
||
setup( | ||
name="NielsenRetail", | ||
version="0.1.2", | ||
version="0.1.2", # Update this with your new version | ||
packages=find_packages(exclude=["tests*"]), | ||
install_requires=[ | ||
"dask[dataframe]==2024.1.1", | ||
"distributed==2024.1.1", | ||
"numpy==1.26.3", | ||
"pandas==2.2.0", | ||
"toolz==0.12.0" | ||
"dask[dataframe]==2024.8.0", | ||
"distributed==2024.8.0", | ||
"numpy==2.0.1", | ||
"pandas==2.2.2", | ||
"toolz==0.12.1" | ||
], | ||
author="Pratik Relekar, Hrishikesh Relekar, Matias Carrasco Kind", | ||
author_email="[email protected], [email protected], [email protected]", | ||
description="Nielsen Reader’s main purpose is to facilitate ease of processing of Nielsen Retail Scanner data of Kilt’s Center’s Nielsen IQ data used for Academic research only. The striking feature of this library is Dask which acts as an underlying framework that uniquely empowers the user to read Nielsen data with limited on device resources (by processing larger-than-memory data in chunks and parallel fashion). It understands the Kilts/Nielsen directory structure.", | ||
description="Nielsen Reader’s main purpose is to facilitate ease of processing of Nielsen Retail Scanner data...", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/pratikrelekar/NielsenDSRS", | ||
|