change development status to beta

This commit is contained in:
iuvbio 2021-07-01 20:04:09 +03:00
parent 85ca9558f9
commit 07440e0f90
1 changed files with 22 additions and 23 deletions

View File

@ -1,4 +1,3 @@
from setuptools import setup, find_packages
@ -12,25 +11,25 @@ with open('pandas_ods_reader/__init__.py') as f:
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name="pandas_ods_reader",
version=version,
description="Read in an ODS file and return it as a pandas.DataFrame",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Topic :: Utilities",
],
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", "lxml"],
setup_requires=["pytest-runner"], # TODO: remove pytest-runner
tests_require=["pytest"]
)
setup(
name="pandas_ods_reader",
version=version,
description="Read in an ODS file and return it as a pandas.DataFrame",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
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", "lxml"],
tests_require=["pytest"]
)