diff --git a/setup.py b/setup.py index a6fa2373d600..1235663a1a88 100644 --- a/setup.py +++ b/setup.py @@ -43,20 +43,21 @@ description="Pythonic interface to Ansys Fluent", long_description=open("README.rst", encoding="utf8").read(), long_description_content_type="text/x-rst", - url="https://github.com/pyansys/pyfluent", license="MIT", author="ANSYS, Inc.", - maintainer="Mainak Kundu", - maintainer_email="mainak.kundu@ansys.com", - install_requires=install_requires, - extras_require={ - "post": install_requires_post, - }, - python_requires=">3.6", + author_email="pyansys.support@ansys.com", + maintainer="PyAnsys developers", + maintainer_email="pyansys.maintainers@ansys.com", classifiers=[ "Development Status :: 4 - Beta", "Programming Language :: Python :: 3", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ], + url="https://github.com/pyansys/pyfluent", + python_requires=">3.6", + install_requires=install_requires, + extras_require={ + "post": install_requires_post, + }, )