forked from ragardner/tksheet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 996 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 996 Bytes
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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding = 'utf-8') as f:
long_description = f.read()
setup(
name = 'tksheet',
packages = ['tksheet'],
version = '5.0.21',
python_requires = '>=3.6',
license = 'MIT',
description = 'Tkinter table / sheet widget',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'ragardner',
url = 'https://github.com/ragardner/tksheet',
download_url = 'https://github.com/ragardner/tksheet/archive/5.0.21.tar.gz',
keywords = ['tkinter', 'table', 'widget'],
install_requires = [],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License'
],
)