forked from serwy/tkthread
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.12 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
from setuptools import setup
from tkthread._version import __version__
with open('README.md', 'rb') as fid:
LONG_DESCRIPTION = fid.read().decode('utf8')
setup(
name='tkthread',
version=__version__,
author='Roger D. Serwy',
author_email='[email protected]',
license="Apache Version 2.0",
keywords="tkinter threading",
url="http://github.com/serwy/tkthread",
packages=['tkthread'],
description='Easy multithreading with Tkinter',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
platforms=["Windows", "Linux", "Solaris", "Mac OS-X", "Unix"],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: User Interfaces',
],
)