|
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-aws-hyperbilling-cost-datasource', |
| 24 | + name="plugin-aws-hyperbilling-cost-datasource", |
25 | 25 | version=VERSION, |
26 | | - description='Data source plugin for AWS HyperBilling', |
27 | | - long_description='', |
28 | | - url='https://www.spaceone.dev/', |
29 | | - author='MEGAZONE SpaceONE Team', |
30 | | - author_email='admin@spaceone.dev', |
31 | | - license='Apache License 2.0', |
| 26 | + description="Data source plugin for AWS HyperBilling", |
| 27 | + long_description="", |
| 28 | + url="https://www.spaceone.dev/", |
| 29 | + author="MEGAZONE SpaceONE Team", |
| 30 | + author_email="admin@spaceone.dev", |
| 31 | + license="Apache License 2.0", |
32 | 32 | packages=find_packages(), |
33 | 33 | install_requires=[ |
34 | | - 'spaceone-core', |
35 | | - 'spaceone-api', |
36 | | - 'spaceone-cost-analysis', |
37 | | - 'pyarrow' |
| 34 | + "spaceone-core", |
| 35 | + "spaceone-api", |
| 36 | + "spaceone-cost-analysis==2.0.dev204", |
| 37 | + "pyarrow", |
38 | 38 | ], |
39 | 39 | zip_safe=False, |
40 | 40 | ) |
0 commit comments