Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
32 lines (30 loc) · 1.18 KB

File metadata and controls

32 lines (30 loc) · 1.18 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
from setuptools import setup
import sys,os
home=os.path.expanduser('~')
with open('description.txt') as f:
long_description = f.read()
setup(
name = 'tkintertable',
version = '1.3.3',
description = 'Extendable table class for Tkinter',
long_description = long_description,
url='https://github.com/dmnfarrell/tkintertable',
license='GPL v3',
author = 'Damien Farrell',
author_email = 'farrell.damien[at]gmail.com',
packages = ['tkintertable'],
package_data={'tkintertable': [ '../description.txt']},
install_requires=['future'],
dependency_links = [],
entry_points = { 'gui_scripts': [
'tablesapp = tkintertable.App:main']},
classifiers = ["Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: User Interfaces",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research"],
keywords = ['tkinter', 'spreadsheet', 'table'],
)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.