-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
45 lines (43 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
45 lines (43 loc) · 1.29 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
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="exifmapper",
version="1.0.1",
packages=["exifmapper"],
package_dir={"exifmapper": "src"},
include_package_data=True,
package_data={
"exifmapper": [
"resources/icon.png",
"gui.py",
],
},
install_requires=[
"PyQt6>=6.7.0",
"requests>=2.31.0",
"Pillow>=10.2.0",
"folium>=0.15.0",
"geopy>=2.4.0",
"simplekml>=1.3.6",
],
entry_points={
"console_scripts": [
"exifmapper=exifmapper.gui:main",
],
},
author="SirCryptic",
author_email="sircryptic@protonmail.com",
description="A desktop application to extract GPS coordinates from images and display them on an interactive map",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SirCryptic/exifmapper",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
python_requires=">=3.11",
)