|
2 | 2 |
|
3 | 3 | from os import path
|
4 | 4 | top_level_directory = path.abspath(path.dirname(__file__))
|
5 |
| -with open(path.join(top_level_directory, 'README.md'), encoding='utf-8') as file: |
| 5 | +with open(path.join(top_level_directory, "README.md"), encoding="utf-8") as file: |
6 | 6 | long_description = file.read()
|
7 | 7 |
|
8 | 8 | setup(
|
9 |
| - name='netbox_atlas_plugin', |
10 |
| - version='1.0.2', |
11 |
| - description='A Prometheus SD API plugin for Netbox.', |
| 9 | + name="netbox_atlas_plugin", |
| 10 | + version="1.0.2", |
| 11 | + description="A Prometheus SD API plugin for Netbox.", |
12 | 12 | long_description=long_description,
|
13 |
| - long_description_content_type='text/markdown', |
14 |
| - author='Stefan Hipfel', |
15 |
| - |
| 13 | + long_description_content_type="text/markdown", |
| 14 | + author="Stefan Hipfel", |
| 15 | + |
16 | 16 | install_requires=[],
|
17 | 17 | packages=find_packages(),
|
18 |
| - license='Apache-2.0', |
| 18 | + license="Apache-2.0", |
19 | 19 | include_package_data=True,
|
20 |
| - keywords=['netbox', 'netbox-plugin', 'plugin'], |
| 20 | + keywords=["netbox", "netbox-plugin", "plugin"], |
21 | 21 | classifiers=[
|
22 |
| - 'Development Status :: 4 - Beta', |
23 |
| - 'Programming Language :: Python :: 3', |
24 |
| - 'Programming Language :: Python :: 3.6', |
25 |
| - 'Programming Language :: Python :: 3.7', |
26 |
| - 'Programming Language :: Python :: 3.8', |
| 22 | + "Development Status :: 4 - Beta", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3.6", |
| 25 | + "Programming Language :: Python :: 3.7", |
| 26 | + "Programming Language :: Python :: 3.8", |
27 | 27 | ],
|
28 | 28 | )
|
0 commit comments