-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 691 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='WebUI',
version='0.2.1',
author='Nick Johnstone',
author_email='ncwjohnstone@gmail.com',
packages=['webui'],
scripts=['examples/test_app.py'],
url='https://github.com/Widdershin/WebUI/',
classifiers=[
"Programming Language :: Python :: 3",
"License :: MIT License",
"Operating System :: OS Independent",
],
description='WebUI lets you create first class desktop applications in Python with HTML/CSS',
long_description=open('README.md').read(),
install_requires=required,
python_requires='>=3.6',
)