-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (47 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pkgutil import walk_packages
from setuptools import setup
def find_packages(path):
# This method returns packages and subpackages as well.
return [name for _, name, is_pkg in walk_packages([path]) if is_pkg]
def read_file(filename):
with open(filename) as fp:
return fp.read().strip()
def read_rst(filename):
# Ignore unsupported directives by pypi.
return ''.join(line for line in read_file(filename).splitlines()
if not line.startswith('.. comment::'))
def read_requirements(filename):
return [line.strip() for line in read_file(filename).splitlines()
if not line.startswith('#')]
setup_attrs = dict(
name='dask-elasticsearch',
version=read_file('VERSION'),
description="Elasticsearch reader for Dask.",
long_description=read_rst('README.rst') + '\n\n' + read_rst('HISTORY.rst'),
author="Rolando (Max) Espinoza",
author_email='rolando at rmax.io',
url='https://github.com/rolando/dask-elasticsearch',
packages=list(find_packages('src')),
package_dir={'': 'src'},
setup_requires=read_requirements('requirements/setup.txt'),
install_requires=read_requirements('requirements/install.txt'),
include_package_data=True,
license="MIT",
zip_safe=False,
keywords='dask-elasticsearch',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)
if __name__ == "__main__":
setup(**setup_attrs)