-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.28 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
39
# -*- coding:utf-8 -*-
from setuptools import setup
with open("VERSION") as f1, open("README.md") as f2:
VERSION = f1.read().strip()
LONG_DESCRIPTION = f2.read()
kw = {
"version": VERSION,
"name": "tkinter-map",
"keywords": [],
"author": "THOORENS Bruno",
"author_email": "moustikitos@gmail.com",
"maintainer": "THOORENS Bruno",
"maintainer_email": "moustikitos@gmail.com",
"url": "https://github.com/Moustikitos/tkinter-map",
"download_url":
"https://github.com/Moustikitos/tkinter-map/archive/master.zip",
"description": "Efficient web map tkinter canvas",
"long_description": LONG_DESCRIPTION,
"long_description_content_type": "text/markdown",
"packages": ["tkmap"],
"install_requires": [],
"license": "Copyright 2023, THOORENS Bruno, MIT licence",
"classifiers": [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
}
setup(**kw)