-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 912 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
from setuptools import setup
setup(
name = 'uistylelang',
packages = ['uistylelang'],
version = '0.8.5',
license='BSD 3-Clause',
description = 'Simple CSS-like language which allows for drawing and styling wxPython elements.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author = 'Noah Rahm, Correct Syntax',
author_email = '[email protected]',
url = 'https://github.com/Correct-Syntax/ui-style-lang',
keywords = ['wxPython', 'css', 'language', 'user interface', 'GUI', 'drawing'],
install_requires=[
'wxpython>=4.1.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Desktop Environment',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
],
)