24 lines
703 B
Python
24 lines
703 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
VERSION = "0.0.2"
|
|
|
|
setup(name="pandas_ods_reader",
|
|
version=VERSION,
|
|
description="Read in an ODS file and return it as a pandas.DataFrame",
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Topic :: Data Processing :: IO',
|
|
],
|
|
keywords='data io pandas ods',
|
|
url="http://github.com/iuvbio/pandas_ods_reader",
|
|
author="iuvbio",
|
|
author_email="cryptodemigod@protonmail.com",
|
|
license="MIT",
|
|
packages=find_packages(),
|
|
zip_safe=False,
|
|
install_requires=["ezodf", "pandas"]
|
|
)
|