|
4 | 4 | from setuptools import setup, find_packages |
5 | 5 |
|
6 | 6 | setup( |
7 | | - name='mergin-client', |
8 | | - version='0.10.5', |
9 | | - url='https://github.com/MerginMaps/python-api-client', |
10 | | - license='MIT', |
11 | | - author='Lutra Consulting Ltd.', |
12 | | - author_email='info@merginmaps.com', |
13 | | - description='Mergin Maps utils and client', |
14 | | - long_description='Mergin Maps utils and client', |
15 | | - |
| 7 | + name="mergin-client", |
| 8 | + version="0.10.5", |
| 9 | + url="https://github.com/MerginMaps/python-api-client", |
| 10 | + license="MIT", |
| 11 | + author="Lutra Consulting Ltd.", |
| 12 | + author_email="info@merginmaps.com", |
| 13 | + description="Mergin Maps utils and client", |
| 14 | + long_description="Mergin Maps utils and client", |
16 | 15 | packages=find_packages(), |
17 | | - |
18 | | - platforms='any', |
| 16 | + platforms="any", |
19 | 17 | install_requires=[ |
20 | | - 'python-dateutil==2.8.2', |
21 | | - 'pygeodiff==2.0.4', |
22 | | - 'pytz==2022.1', |
23 | | - 'click==8.1.3', |
24 | | - 'pathvalidate==3.3.1', |
| 18 | + "python-dateutil==2.8.2", |
| 19 | + "pygeodiff==2.0.4", |
| 20 | + "pytz==2022.1", |
| 21 | + "click==8.1.3", |
| 22 | + "pathvalidate==3.3.1", |
25 | 23 | ], |
26 | | - |
27 | 24 | entry_points={ |
28 | | - 'console_scripts': ['mergin=mergin.cli:cli'], |
| 25 | + "console_scripts": ["mergin=mergin.cli:cli"], |
29 | 26 | }, |
30 | | - |
31 | 27 | classifiers=[ |
32 | | - 'Development Status :: 5 - Production/Stable', |
33 | | - 'Intended Audience :: Developers', |
34 | | - 'License :: OSI Approved :: MIT License', |
35 | | - 'Operating System :: OS Independent', |
36 | | - 'Programming Language :: Python :: 3' |
| 28 | + "Development Status :: 5 - Production/Stable", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "License :: OSI Approved :: MIT License", |
| 31 | + "Operating System :: OS Independent", |
| 32 | + "Programming Language :: Python :: 3", |
37 | 33 | ], |
38 | | - package_data={'mergin': ['cert.pem']} |
| 34 | + package_data={"mergin": ["cert.pem"]}, |
39 | 35 | ) |
0 commit comments