-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
42 lines (38 loc) · 1.31 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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('version') as version_file:
version = version_file.read()
setup(
name='pyarrowfs-adlgen2',
version=version,
description='Use pyarrow with Azure Data Lake gen2',
url='https://github.com/kaaveland/pyarrowfs-adlgen2',
author='Robin Kåveland',
author_email='kaaveland@gmail.com',
license='MIT',
long_description=readme,
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
packages=find_packages(include=['pyarrowfs_adlgen2'], exclude=['test']),
python_requires='>=3.6',
install_requires=[
'pyarrow>=1.0.0',
'azure-storage-file-datalake'
],
extras_require={
'dev': ['pandas', 'pytest']
},
keywords='azure datalake filesystem pyarrow parquet'
)