bump version and add email
This commit is contained in:
parent
770bc442b1
commit
026596769f
14
setup.py
14
setup.py
|
|
@ -1,15 +1,23 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
VERSION = "0.0.1"
|
VERSION = "0.0.2"
|
||||||
|
|
||||||
setup(name="pandas_ods_reader",
|
setup(name="pandas_ods_reader",
|
||||||
version=VERSION,
|
version=VERSION,
|
||||||
description="Read in an ODS file and return it as a pandas.DataFrame",
|
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",
|
url="http://github.com/iuvbio/pandas_ods_reader",
|
||||||
author="iuvbio",
|
author="iuvbio",
|
||||||
author_email="",
|
author_email="cryptodemigod@protonmail.com",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
install_requires=["ezodf", "pandas"])
|
install_requires=["ezodf", "pandas"]
|
||||||
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue