-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 974 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
setup(
name='ResponsiveTkinter',
packages=['ResponsiveTkinter'],
version='1.0.2',
license='MIT',
description='This is a simple library that allows you to create responsive widgets in your tkinter window.',
author='Legopitstop',
author_email='officiallegopitstop@gmail.com',
url='https://github.com/legopitstop/ResponsiveTkinter',
download_url='https://github.com/legopitstop/ResponsiveTkinter/archive/v1.0.2.tar.gz',
keywords=['responsive', 'tkinter', 'resizeable'],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.9',
]
)