Skip to content

Commit 95f16ac

Browse files
author
d.kovalenko
committed
setup.py is updated [black]
1 parent 9770fc6 commit 95f16ac

File tree

1 file changed

+29
-30
lines changed

1 file changed

+29
-30
lines changed

setup.py

Lines changed: 29 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,50 @@
11
# //////////////////////////////////////////////////////////////////////////////
22
# Postgres Pro. PostgreSQL Configuration Python Library.
33

4-
#import sys
4+
# import sys
55

66
try:
77
from setuptools import setup
88
except ImportError:
99
from distutils.core import setup
1010

1111
# Basic dependencies
12-
install_requires = [
13-
]
12+
install_requires = []
1413

1514
# Get contents of README file
16-
with open('README.md', 'r') as f:
15+
with open("README.md", "r") as f:
1716
readme = f.read()
1817

1918
setup(
20-
version='0.0.1',
21-
name='testgres.postgres_configuration',
19+
version="0.0.1",
20+
name="testgres.postgres_configuration",
2221
packages=[
23-
'testgres.postgres_configuration',
24-
'testgres.postgres_configuration.abstract',
25-
'testgres.postgres_configuration.abstract.v00',
26-
'testgres.postgres_configuration.implementation',
27-
'testgres.postgres_configuration.implementation.v00',
28-
'testgres.postgres_configuration.core',
29-
'testgres.postgres_configuration.core.option',
30-
'testgres.postgres_configuration.core.option.handlers',
31-
'testgres.postgres_configuration.core.option.handlers.add',
32-
'testgres.postgres_configuration.core.option.handlers.get_value',
33-
'testgres.postgres_configuration.core.option.handlers.prepare_get_value',
34-
'testgres.postgres_configuration.core.option.handlers.prepare_set_value',
35-
'testgres.postgres_configuration.core.option.handlers.prepare_set_value_item',
36-
'testgres.postgres_configuration.core.option.handlers.set_value',
37-
'testgres.postgres_configuration.core.option.handlers.set_value_item',
38-
'testgres.postgres_configuration.core.option.handlers.write',
22+
"testgres.postgres_configuration",
23+
"testgres.postgres_configuration.abstract",
24+
"testgres.postgres_configuration.abstract.v00",
25+
"testgres.postgres_configuration.implementation",
26+
"testgres.postgres_configuration.implementation.v00",
27+
"testgres.postgres_configuration.core",
28+
"testgres.postgres_configuration.core.option",
29+
"testgres.postgres_configuration.core.option.handlers",
30+
"testgres.postgres_configuration.core.option.handlers.add",
31+
"testgres.postgres_configuration.core.option.handlers.get_value",
32+
"testgres.postgres_configuration.core.option.handlers.prepare_get_value",
33+
"testgres.postgres_configuration.core.option.handlers.prepare_set_value",
34+
"testgres.postgres_configuration.core.option.handlers.prepare_set_value_item",
35+
"testgres.postgres_configuration.core.option.handlers.set_value",
36+
"testgres.postgres_configuration.core.option.handlers.set_value_item",
37+
"testgres.postgres_configuration.core.option.handlers.write",
3938
],
40-
package_dir={'testgres.postgres_configuration': 'src'},
41-
description='PostgreSQL Configuration Python Library',
42-
url='https://git.postgrespro.ru/d.kovalenko/testgres.postgres_configuration',
39+
package_dir={"testgres.postgres_configuration": "src"},
40+
description="PostgreSQL Configuration Python Library",
41+
url="https://git.postgrespro.ru/d.kovalenko/testgres.postgres_configuration",
4342
long_description=readme,
44-
long_description_content_type='text/markdown',
45-
license='PostgreSQL',
46-
author='Postgres Professional',
47-
author_email='d.kovalenko@postgrespro.ru',
48-
keywords=['postgresql', 'postgres', 'test'],
43+
long_description_content_type="text/markdown",
44+
license="PostgreSQL",
45+
author="Postgres Professional",
46+
author_email="d.kovalenko@postgrespro.ru",
47+
keywords=["postgresql", "postgres", "test"],
4948
install_requires=install_requires,
5049
classifiers=[],
5150
)

0 commit comments

Comments
 (0)