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 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: with open("README.md", "r") as fh:
long_description = fh.read() long_description = fh.read()
setup(name="pandas_ods_reader", setup(
version=version, name="pandas_ods_reader",
description="Read in an ODS file and return it as a pandas.DataFrame", version=version,
long_description=long_description, description="Read in an ODS file and return it as a pandas.DataFrame",
long_description_content_type="text/markdown", long_description=long_description,
classifiers=[ long_description_content_type="text/markdown",
"Development Status :: 3 - Alpha", classifiers=[
"License :: OSI Approved :: MIT License", "Development Status :: 2 - Beta",
"Programming Language :: Python :: 3.7", "License :: OSI Approved :: MIT License",
"Topic :: Utilities", "Programming Language :: Python :: 3",
], "Topic :: Utilities",
keywords="data io pandas ods", ],
url="http://github.com/iuvbio/pandas_ods_reader", keywords="data io pandas ods",
author="iuvbio", url="http://github.com/iuvbio/pandas_ods_reader",
author_email="cryptodemigod@protonmail.com", author="iuvbio",
license="MIT", author_email="cryptodemigod@protonmail.com",
packages=find_packages(), license="MIT",
zip_safe=False, packages=find_packages(),
install_requires=["ezodf", "pandas", "lxml"], zip_safe=False,
setup_requires=["pytest-runner"], # TODO: remove pytest-runner install_requires=["ezodf", "pandas", "lxml"],
tests_require=["pytest"] tests_require=["pytest"]
) )