-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
38 lines (32 loc) · 1.04 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright (C) 2019 Lutra Consulting. All rights reserved.
# Do not distribute without the express permission of the author.
from setuptools import setup, find_packages
setup(
name='mergin-client',
version='0.9.3',
url='https://github.com/MerginMaps/python-api-client',
license='MIT',
author='Lutra Consulting Ltd.',
author_email='[email protected]',
description='Mergin Maps utils and client',
long_description='Mergin Maps utils and client',
packages=find_packages(),
platforms='any',
install_requires=[
'python-dateutil==2.8.2',
'pygeodiff==2.0.4',
'pytz==2022.1',
'click==8.1.3',
],
entry_points={
'console_scripts': ['mergin=mergin.cli:cli'],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
package_data={'mergin': ['cert.pem']}
)