-
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.
Allow the use of datasets in the apply_on_groups method and also use …
…kwargs as parameter instead of **kwargs
- Loading branch information
1 parent
315d415
commit 13d178d
Showing
3 changed files
with
110 additions
and
69 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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
from setuptools import setup, find_packages | ||
|
||
with open('requirements.txt') as f: | ||
with open("requirements.txt") as f: | ||
required = f.read().splitlines() | ||
|
||
setup( | ||
name='TensorDB', | ||
version='0.30.4', | ||
description='Database based in a file system storage combined with Xarray and Zarr', | ||
author='Joseph Nowak', | ||
author_email='[email protected]', | ||
name="TensorDB", | ||
version="0.31.0", | ||
description="Database based in a file system storage combined with Xarray and Zarr", | ||
author="Joseph Nowak", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
'Development Status :: 1 - Beta', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: General', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3.9', | ||
"Development Status :: 1 - Beta", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: General", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.9", | ||
], | ||
keywords='Database Files Xarray Handler Zarr Store Read Write Append Update Upsert Backup Delete S3', | ||
keywords="Database Files Xarray Handler Zarr Store Read Write Append Update Upsert Backup Delete S3", | ||
packages=find_packages(), | ||
install_requires=required | ||
install_requires=required, | ||
) |
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
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