Skip to content

Commit 0c9b711

Browse files
authored
feat: including additional metadata (#35)
1 parent c903713 commit 0c9b711

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

setup.py

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,13 @@
2828
name=package_name,
2929
version=version,
3030
author="ANSYS, Inc.",
31-
author_email='support@ansys.com',
31+
author_email='pyansys.core@ansys.com',
32+
maintainer="ANSYS, Inc.",
33+
maintainer_email='pyansys.core@ansys.com',
3234
description=description,
3335
long_description=long_description,
3436
long_description_content_type='text/markdown',
35-
url=f"https://github.com/ansys/{package_name}",
37+
url=f"https://github.com/pyansys/{package_name}",
3638
license="MIT",
3739
python_requires=">=3.7",
3840
install_requires=["grpcio~=1.47", "protobuf~=3.19"],
@@ -45,5 +47,10 @@
4547
f"{dot_package_name}={dot_package_name}"
4648
],
4749
},
48-
cmdclass=CMDCLASS_OVERRIDE
50+
cmdclass=CMDCLASS_OVERRIDE,
51+
project_urls={
52+
'Documentation': 'https://github.com/pyansys/ansys-api-geometry/#readme',
53+
'Source': 'https://github.com/pyansys/ansys-api-geometry/',
54+
'Tracker': 'https://github.com/pyansys/ansys-api-geometry/issues/',
55+
},
4956
)

0 commit comments

Comments
 (0)