Update setup.py

master
TechDudie 2021-03-05 10:59:38 -06:00 committed by GitHub
parent d0c577b1ed
commit a2e0e4ccf4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ Tkinter Drag-N-Drop module.
Import this module with
```python
import dnd
import tkinterDnD as dnd
```
To make a widget draggable, do
@ -31,7 +31,7 @@ Here's an example of this module being put to use.
```python
import tkinter
import dnd
import tkinterDnD as dnd
tk = tkinter.Tk()
tk.title("tkinterDnD")
frame = tkinter.Frame(tk, bd=4, height=64, width=64, bg="red")
@ -53,13 +53,13 @@ tk.mainloop()
# Side note: The module has a default snap grid of 16x16 units.
"""
setup(name="dnd",
setup(name="tkinterDnD",
url="https://github.com/TechDudie/tkinterDnD",
license="MIT",
install_requires=["tkinter"],
author_email="technologydev101@gmail.com",
description="a python tkinter drag and drop widget",
description="A python tkinter drag and drop system.",
long_description=LONG,
packages=["dnd"],
packages=["tkinterDnD"],
platforms='any',)