-
Notifications
You must be signed in to change notification settings - Fork 87
/
setup.py
24 lines (22 loc) · 1.05 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
from setuptools import setup
# Update on pypi:
#
# 1. delete old /dist
# 2 increase both version numbers
# 3. python3.10 -m pip install --upgrade build
# 4. python3.10 -m build
# 5. python3.10 -m twine upload dist/*
setup(name="tkintermapview",
version="1.29",
author="Tom Schimansky",
license="Creative Commons Zero v1.0 Universal",
url="https://github.com/TomSchimansky/TkinterMapView",
description="A python Tkinter widget to display image tile maps like OpenStreetMap or Satellite Images.",
long_description_content_type="text/markdown",
long_description="**Detailed Information: https://github.com/TomSchimansky/TkinterMapView**",
packages=["tkintermapview"],
classifiers=["Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication"],
install_requires=["geocoder", "pillow", "requests", "pyperclip", 'pywin32; platform_system=="Windows"', "customtkinter"],
python_requires=">=3.6")