-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 873 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
requires = open('requirements.txt').read().strip().split('\n')
setup(
name='intake-solr',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='SOLR plugin for Intake',
url='https://github.com/intake/intake-solr',
maintainer='Martin Durant',
maintainer_email='mdurant@anaconda.com',
license='BSD',
py_modules=['intake_solr'],
packages=find_packages(),
entry_points={
'intake.drivers': [
'solr = intake_solr.source:SOLRSequenceSource',
'solrtab = intake_solr.source:SOLRTableSource',
]},
package_data={'': ['*.csv', '*.yml', '*.html']},
include_package_data=True,
install_requires=requires,
long_description=open('README.rst').read(),
zip_safe=False,
)