-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (34 loc) · 1.06 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
#!/usr/bin/env python
from os.path import dirname, join
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import threadsafe_tkinter
long_desc = 'Simple wrapper library for tkinter that makes it threadsafe.'
setup(
name='threadsafe_tkinter',
description='A thread-safe version of Tkinter for Python3.',
long_description=long_desc,
version='%s.%s.%s' % threadsafe_tkinter.__version__,
author='Devin Bobadilla',
author_email='MosesBobadilla@gmail.com',
license='MIT',
packages=[
'threadsafe_tkinter',
],
package_data={
'': ['*.TXT', '*.md', '*.rst'],
},
platforms=["POSIX", "Windows"],
keywords="tkinter, thread, multithread, threadsafe",
provides=['threadsafe_tkinter'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
zip_safe=True,
)