-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.04 KB
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
# 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.12.3",
url="https://github.com/MerginMaps/python-api-client",
license="MIT",
author="Lutra Consulting Ltd.",
author_email="info@merginmaps.com",
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.2.0",
"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"]},
)