forked from gen2brain/pyhtmleditor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 718 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
import os
import sys
from distutils.core import setup
sys.path.append(os.path.realpath("src"))
setup(name = "pyhtmleditor",
version = "0.0.1",
description = "PyQt WYSIWYG HTML Editor",
long_description = "Python port of QtWebKit htmleditor from the Graphics Dojo project on Qt Labs.",
author = "Milan Nikolic",
author_email = "gen2brain@gmail.com",
license = "GNU GPLv3",
url = "http://github.com/gen2brain/pyhtmleditor",
packages = ["pyhtmleditor", "pyhtmleditor.ui"],
package_dir = {"": "src"},
scripts = ["pyhtmleditor"],
requires = ["PyQt5"],
platforms = ["Linux", "Windows", "OSX"]
)