|
1 | 1 | # ////////////////////////////////////////////////////////////////////////////// |
2 | 2 | # Postgres Pro. PostgreSQL Configuration Python Library. |
3 | 3 |
|
4 | | -#import sys |
| 4 | +# import sys |
5 | 5 |
|
6 | 6 | try: |
7 | 7 | from setuptools import setup |
8 | 8 | except ImportError: |
9 | 9 | from distutils.core import setup |
10 | 10 |
|
11 | 11 | # Basic dependencies |
12 | | -install_requires = [ |
13 | | -] |
| 12 | +install_requires = [] |
14 | 13 |
|
15 | 14 | # Get contents of README file |
16 | | -with open('README.md', 'r') as f: |
| 15 | +with open("README.md", "r") as f: |
17 | 16 | readme = f.read() |
18 | 17 |
|
19 | 18 | setup( |
20 | | - version='0.0.1', |
21 | | - name='testgres.postgres_configuration', |
| 19 | + version="0.0.1", |
| 20 | + name="testgres.postgres_configuration", |
22 | 21 | 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", |
39 | 38 | ], |
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", |
43 | 42 | 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"], |
49 | 48 | install_requires=install_requires, |
50 | 49 | classifiers=[], |
51 | 50 | ) |
0 commit comments