-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (44 loc) · 1.33 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# -*- coding: utf-8 -*-
from setuptools import setup
# inject version
__version__ = None
with open("dask_igzip/__version__.py") as f:
exec(f.read())
with open('README.rst', 'r') as f:
long_description = f.read()
with open('CHANGELOG.rst', 'r') as f:
long_description += "\n\n" + f.read()
setup(
name='dask-igzip',
version=__version__,
description="dask chunked read_text on gzip file",
long_description=long_description,
author='Jurismarches',
author_email='[email protected]',
url='https://github.com/jurismarches/dask_igzip',
packages=[
'dask_igzip',
],
install_requires=[
'indexed_gzip>=0.8.5',
'dask[bag]>=0.17.5',
],
extras_require={
"tests": [
'pytest>=3.4.2',
'pytest-cov>=2.5.1',
'flake8>=3.5.0',
'distributed>=1.22',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Topic :: Scientific/Engineering :: Information Analysis',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)