diff --git a/setup.py b/setup.py index 68368ca..7fec579 100644 --- a/setup.py +++ b/setup.py @@ -1,28 +1,28 @@ import setuptools with open("README.md", "r") as fh: long_description = fh.read().replace('lang=', '') setuptools.setup( name="uvw", - version="0.1.0", + version="0.2.0", author="Lucas Frérot", author_email="lucas.frerot@protonmail.com", description="Universal VTK Writer for Numpy Arrays", long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/prs513rosewood/uvw", packages=setuptools.find_packages(), install_requires=['numpy'], extras_require={ "mpi": ['mpi4py'], "tests": ['pytest', 'pytest-mpi', 'mpi4py', 'vtk'], }, classifiers=( "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Topic :: Scientific/Engineering :: Visualization", "Intended Audience :: Science/Research", ) )