-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 1.22 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
from setuptools import setup, find_packages
import ParquetLoader
setup(
name = ParquetLoader.__name__,
version = ParquetLoader.__version__,
description = ParquetLoader.__description__,
author = ParquetLoader.__author__,
author_email = ParquetLoader.__author_email__,
license = ParquetLoader.__license__,
url = ParquetLoader.__url__,
download_url = ParquetLoader.__download_url__,
install_requires = ParquetLoader.__install_requires__,
packages = find_packages(exclude = []),
long_description=open('./README.md', 'r', encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords = ['parquet','loader','parquetloader'],
python_requires = '>=3',
package_data = {},
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)