This repository was archived by the owner on Jun 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (35 loc) · 1.25 KB
/
setup.py
File metadata and controls
38 lines (35 loc) · 1.25 KB
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
32
33
34
35
36
37
38
from setuptools import setup
import sys
requirements = ["Jinja2(>=2.6)"]
if "win" in sys.platform:
requirements.append("PySide(>=1.2.2)")
setup(
name='htmlPy',
version='2.0.3',
author='Amol Mandhane',
author_email='amol.mandhane@gmail.com',
packages=['htmlPy'],
scripts=[],
url='http://pypi.python.org/pypi/htmlPy/',
license='LICENSE.txt',
description="A wrapper around PySide's QtWebKit library which helps " +
"developer create beautiful UI with HTML5, CSS and Javascript for " +
"standalone applications.",
long_description=open('README.md').read(),
requires=requirements,
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: User Interfaces'
],
)