-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.56 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.56 KB
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
# -*- coding: utf-8 -*-
"""Sets up reportio package."""
# %% Imports
from setuptools import setup, find_packages
import os
# %% Script
with open(os.path.join(os.path.dirname(__file__), 'README.md'),
'r') as objFile:
long_desc: str = objFile.read()
short_desc: str = long_desc.split('Short Description')[1].split('\n')[1]
setup(name='reportio',
version='0.3.5',
author='Dan Eschman',
author_email='deschman007@gmail.com',
url='https://github.com/deschman/reportio',
classifiers=[
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3',
'Operating System :: Microsoft :: Windows',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'],
python_requires='>=3.3',
# TODO: find version dependancies for all of these
install_requires=['pysqlite3', 'numba', 'pytest-dbfixtures', 'pytest',
'pandas', 'pyarrow', 'openpyxl'],
extras_require={'gzip_alt_processing': 'fastparquet',
'odbc': 'pyodbc',
'jdbc': 'jaydebeapi',
'mysql_support': 'mysql-connector-python',
'multithread_support': 'dask',
'progress_bar': 'tqdm'},
description=short_desc,
long_description=long_desc,
long_description_content_type='text/markdown',
packages=find_packages())