-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 1018 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
23
24
25
26
27
28
29
30
31
from setuptools import setup
setup(
name='gswidgetkit',
packages=['gswidgetkit', 'gswidgetkit.icons'],
version='0.3.3',
license='Apache 2.0',
description='Custom widget toolkit for easier creation of customized wxPython GUIs',
long_description_content_type="text/markdown",
author='Noah Rahm',
author_email='correctsyntax@yahoo.com',
url='https://github.com/GimelStudio/gswidgetkit',
keywords=['wxpython', 'widgets', 'custom'],
install_requires=[
'wxpython==4.2.1'
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Desktop Environment',
'Topic :: Multimedia :: Graphics :: Editors',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)