-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (46 loc) · 1.21 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
extras_require = {
'tests': [
'pytest',
'codecov',
'pytest-cov',
'flake8',
'twine',
'rfc3986',
'keyring'
]
}
install_requires = [
'pandas >=0.25',
'intake',
'dask-snowflake'
]
setup_args = dict(
name='intake-snowflake',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Snowflake plugin for Intake',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url='https://github.com/intake/intake-snowflake',
maintainer='Philipp Rudiger',
maintainer_email='[email protected]',
license='BSD-3',
python_requires=">=3.6",
py_modules=['intake_snowflake'],
packages=find_packages(),
package_data={'': ['*.csv', '*.yml', '*.html']},
entry_points={
'intake.drivers': [
'snoflake = intake_snowflake.intake_snowflake:SnowflakeSource'
]
},
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
zip_safe=False,
)
if __name__ == '__main__':
setup(**setup_args)