forked from dmnfarrell/tkintertable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.02 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
from setuptools import setup
import sys,os
home=os.path.expanduser('~')
setup(
name = 'tkintertable',
version = '1.2',
description = 'Extendable table class for Tkinter',
url='https://github.com/dmnfarrell/tkintertable',
license='GPL v3',
author = 'Damien Farrell',
author_email = 'farrell.damien[at]gmail.com',
packages = ['tkintertable'],
install_requires=['Pmw'],
dependency_links = [
"http://download.sourceforge.net/pmw/Pmw.1.3.tar.gz"],
entry_points = { 'gui_scripts': [
'tablesapp = tkintertable.TablesApp:main']},
classifiers = ["Operating System :: OS Independent",
"Programming Language :: Python",
"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'],
)