-
-
Notifications
You must be signed in to change notification settings - Fork 30
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
52449dd
commit e1886a4
Showing
6 changed files
with
237 additions
and
51 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,24 +1,28 @@ | ||
#!/usr/bin/env python | ||
|
||
import os | ||
|
||
from setuptools import setup | ||
|
||
setup(name='zict', | ||
version='2.0.0', | ||
description='Mutable mapping tools', | ||
url='http://zict.readthedocs.io/en/latest/', | ||
maintainer='Matthew Rocklin', | ||
maintainer_email='[email protected]', | ||
license='BSD', | ||
keywords='mutable mapping,dict,dask', | ||
packages=['zict'], | ||
install_requires=open('requirements.txt').read().strip().split('\n'), | ||
long_description=(open('README.rst').read() if os.path.exists('README.rst') | ||
else ''), | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
zip_safe=False) | ||
setup( | ||
name="zict", | ||
version="2.1.0.dev1", | ||
description="Mutable mapping tools", | ||
url="http://zict.readthedocs.io/en/latest/", | ||
maintainer="Matthew Rocklin", | ||
maintainer_email="[email protected]", | ||
license="BSD", | ||
keywords="mutable mapping,dict,dask", | ||
packages=["zict"], | ||
install_requires=open("requirements.txt").read().strip().split("\n"), | ||
long_description=( | ||
open("README.rst").read() if os.path.exists("README.rst") else "" | ||
), | ||
classifiers=[ | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
], | ||
zip_safe=False, | ||
) |
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,9 +1,9 @@ | ||
from .zip import Zip | ||
from .buffer import Buffer | ||
from .file import File | ||
from .func import Func | ||
from .lmdb import LMDB | ||
from .lru import LRU | ||
from .buffer import Buffer | ||
from .sieve import Sieve | ||
from .lmdb import LMDB | ||
from .zip import Zip | ||
|
||
__version__ = "2.0.0" | ||
__version__ = "2.1.0.dev1" |
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
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
Oops, something went wrong.