forked from slightlynybbled/tk_tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 798 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 798 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
30
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('tk_tools/version.py').read())
requirements = []
setup(
name='tk_tools',
version=__version__,
description='Tkinter-native toolset and widget library',
author='Jason R. Jones',
author_email='slightlynybbled@gmail.com',
url='https://github.com/slightlynybbled/tk_tools',
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
zip_safe=False,
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Natural Language :: English'
],
keywords='tkinter gui widgets'
)