|
15 | 15 | product = "geometry" |
16 | 16 | library = "" |
17 | 17 | 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: |
19 | 21 | version = f.read().strip() |
20 | 22 |
|
21 | 23 | package_name = "ansys-api-geometry" |
22 | | -dot_package_name = '.'.join(filter(None, package_info)) |
| 24 | +dot_package_name = ".".join(filter(None, package_info)) |
23 | 25 |
|
24 | 26 | description = f"Autogenerated Python gRPC interface package for {package_name}, built on {datetime.now().strftime('%H:%M:%S on %d %B %Y')}" |
25 | 27 |
|
|
28 | 30 | name=package_name, |
29 | 31 | version=version, |
30 | 32 | author="ANSYS, Inc.", |
31 | | - author_email='pyansys.core@ansys.com', |
| 33 | + author_email="pyansys.core@ansys.com", |
32 | 34 | maintainer="ANSYS, Inc.", |
33 | | - maintainer_email='pyansys.core@ansys.com', |
| 35 | + maintainer_email="pyansys.core@ansys.com", |
34 | 36 | description=description, |
35 | 37 | long_description=long_description, |
36 | | - long_description_content_type='text/markdown', |
| 38 | + long_description_content_type="text/markdown", |
37 | 39 | url=f"https://github.com/ansys/{package_name}", |
38 | 40 | license="MIT", |
39 | 41 | 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"], |
41 | 43 | packages=setuptools.find_namespace_packages(".", include=("ansys.*",)), |
42 | 44 | package_data={ |
43 | 45 | "": ["*.proto", "*.pyi", "py.typed", "VERSION"], |
|
49 | 51 | }, |
50 | 52 | cmdclass=CMDCLASS_OVERRIDE, |
51 | 53 | 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/", |
55 | 57 | }, |
56 | 58 | ) |
0 commit comments