forked from fsspec/kerchunk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 725 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (19 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from os.path import exists
from setuptools import setup
import versioneer
setup(
name='kerchunk',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=['kerchunk', 'fsspec_reference_maker'],
url='https://github.com/fsspec/kerchunk',
license='MIT',
author='Martin Durant',
author_email='martin.durant@alumni.utoronto.ca',
description='Functions to make reference descriptions for ReferenceFileSystem',
python_requires='>=3.7',
long_description=(open('README.md').read() if exists('README.md') else ''),
long_description_content_type='text/markdown',
install_requires=list(open('requirements.txt').read().strip().split('\n')),
zip_safe=False
)