|
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 | | - |
13 | | - description="Mergin Maps utils and client", |
14 | | - long_description="Mergin Maps utils and client", |
| 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 | + |
| 13 | + description='Mergin Maps utils and client', |
| 14 | + long_description='Mergin Maps utils and client', |
| 15 | + |
15 | 16 | packages=find_packages(), |
16 | | - platforms="any", |
| 17 | + |
| 18 | + platforms='any', |
17 | 19 | install_requires=[ |
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", |
| 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', |
23 | 25 | ], |
| 26 | + |
24 | 27 | entry_points={ |
25 | | - "console_scripts": ["mergin=mergin.cli:cli"], |
| 28 | + 'console_scripts': ['mergin=mergin.cli:cli'], |
26 | 29 | }, |
| 30 | + |
27 | 31 | classifiers=[ |
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", |
| 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' |
33 | 37 | ], |
34 | | - package_data={"mergin": ["cert.pem"]}, |
| 38 | + package_data={'mergin': ['cert.pem']} |
35 | 39 | ) |
0 commit comments