|
16 | 16 |
|
17 | 17 | from setuptools import setup, find_packages |
18 | 18 |
|
19 | | -with open('VERSION', 'r') as f: |
| 19 | +with open("VERSION", "r") as f: |
20 | 20 | VERSION = f.read().strip() |
21 | 21 | f.close() |
22 | 22 |
|
23 | 23 | setup( |
24 | | - name='plugin-google-cloud-logging', |
| 24 | + name="plugin-google-cloud-logging", |
25 | 25 | version=VERSION, |
26 | | - description='Google cloud logging collector', |
27 | | - long_description='', |
28 | | - url='https://www.cloudforet-io.com/', |
29 | | - author='MEGAZONE SpaceONE Team', |
30 | | - author_email='admin@spaceone.dev', |
31 | | - license='Apache License 2.0', |
| 26 | + description="Google cloud logging collector", |
| 27 | + long_description="", |
| 28 | + url="https://www.cloudforet-io.com/", |
| 29 | + author="MEGAZONE SpaceONE Team", |
| 30 | + author_email="admin@spaceone.dev", |
| 31 | + license="Apache License 2.0", |
32 | 32 | packages=find_packages(), |
33 | | - install_requires=[ |
34 | | - 'spaceone-core', |
35 | | - 'spaceone-api', |
36 | | - 'google-api-python-client', |
37 | | - 'schematics' |
38 | | - ], |
| 33 | + install_requires=["spaceone-api", "google-api-python-client", "schematics"], |
39 | 34 | zip_safe=False, |
40 | 35 | ) |
0 commit comments