Skip to content

Commit b6e0ed8

Browse files
committed
Merge branch 'main' into release/0.3
2 parents 2989604 + a89d422 commit b6e0ed8

File tree

2 files changed

+17
-10
lines changed

2 files changed

+17
-10
lines changed

pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
[build-system]
2-
requires = ["setuptools >= 42.0.0", "wheel", "ansys_tools_protoc_helper>=0.4.0", "ansys-api-dbu==0.2.2"]
2+
requires = [
3+
"setuptools >= 42.0.0",
4+
"wheel",
5+
"ansys_tools_protoc_helper>=0.4.0",
6+
"ansys-api-dbu==0.2.3",
7+
]
38
build-backend = "setuptools.build_meta:__legacy__"

setup.py

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
product = "geometry"
1616
library = ""
1717
package_info = ["ansys", "api", product, library, "v0"]
18-
with open(os.path.join(HERE, "ansys", "api", product, library, "VERSION"), encoding="utf-8") as f:
18+
with open(
19+
os.path.join(HERE, "ansys", "api", product, library, "VERSION"), encoding="utf-8"
20+
) as f:
1921
version = f.read().strip()
2022

2123
package_name = "ansys-api-geometry"
22-
dot_package_name = '.'.join(filter(None, package_info))
24+
dot_package_name = ".".join(filter(None, package_info))
2325

2426
description = f"Autogenerated Python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}"
2527

@@ -28,16 +30,16 @@
2830
name=package_name,
2931
version=version,
3032
author="ANSYS, Inc.",
31-
author_email='pyansys.core@ansys.com',
33+
author_email="pyansys.core@ansys.com",
3234
maintainer="ANSYS, Inc.",
33-
maintainer_email='pyansys.core@ansys.com',
35+
maintainer_email="pyansys.core@ansys.com",
3436
description=description,
3537
long_description=long_description,
36-
long_description_content_type='text/markdown',
38+
long_description_content_type="text/markdown",
3739
url=f"https://github.com/ansys/{package_name}",
3840
license="MIT",
3941
python_requires=">=3.7",
40-
install_requires=["grpcio~=1.47", "protobuf>=3.19,<5", "ansys-api-dbu==0.2.2"],
42+
install_requires=["grpcio~=1.47", "protobuf>=3.19,<5", "ansys-api-dbu==0.2.3"],
4143
packages=setuptools.find_namespace_packages(".", include=("ansys.*",)),
4244
package_data={
4345
"": ["*.proto", "*.pyi", "py.typed", "VERSION"],
@@ -49,8 +51,8 @@
4951
},
5052
cmdclass=CMDCLASS_OVERRIDE,
5153
project_urls={
52-
'Documentation': 'https://github.com/ansys/ansys-api-geometry/#readme',
53-
'Source': 'https://github.com/ansys/ansys-api-geometry/',
54-
'Tracker': 'https://github.com/ansys/ansys-api-geometry/issues/',
54+
"Documentation": "https://github.com/ansys/ansys-api-geometry/#readme",
55+
"Source": "https://github.com/ansys/ansys-api-geometry/",
56+
"Tracker": "https://github.com/ansys/ansys-api-geometry/issues/",
5557
},
5658
)

0 commit comments

Comments
 (0)