-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 855 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 855 Bytes
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
#!/usr/bin/env python
from setuptools import setup
import versioneer
requires = open('requirements.txt').read().strip().split('\n')
setup(
name='intake-odbc',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='ODBC plugin for Intake',
url='https://github.com/ContinuumIO/intake-odbc',
maintainer='Stan Seibert',
maintainer_email='sseibert@anaconda.com',
license='BSD',
py_modules=['intake_odbc'],
packages=['intake_odbc'],
entry_points={
'intake.drivers': [
'odbc = intake_odbc.intake_odbc:ODBCPartitionedSource',
]},
package_data={'': ['*.csv', '*.yml', '*.html', '*.txt']},
include_package_data=True,
install_requires=requires,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False,
)