forked from dask/partd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·34 lines (32 loc) · 1.08 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from os.path import exists
from setuptools import setup
import versioneer
setup(name='partd',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Appendable key-value storage',
url='http://github.com/dask/partd/',
maintainer='Matthew Rocklin',
maintainer_email='[email protected]',
license='BSD',
keywords='',
packages=['partd'],
install_requires=list(open('requirements.txt').read().strip().split('\n')),
python_requires=">=3.5",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
long_description=(open('README.rst').read() if exists('README.rst')
else ''),
extras_require={'complete': [
'numpy >= 1.9.0',
'pandas >=0.19.0',
'pyzmq',
'blosc',
]},
zip_safe=False)