This repository was archived by the owner on Sep 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
executable file
·49 lines (46 loc) · 1.77 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python
from setuptools import setup
from os import path
from JAK import __version__
#from setuptools import setup, find_packages
readme = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(readme, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name = "Jade-Application-Kit",
version = __version__,
packages = ["JAK"],
python_requires = ">=3.6",
url = "https://codesardine.github.io/Jade-Application-Kit",
license = "GPL",
author = "Vitor Lopes",
description = "Create native web wrappers or write hybrid Desktop applications on Linux,"
" with Python, JavaScript, HTML, and Blink",
long_description = long_description,
long_description_content_type='text/markdown',
download_url = "https://github.com/codesardine/Jade-Application-Kit/zipball/master",
keywords = ["Jade Application Kit", "gui", "blink", "html5", "web technologies", "javascript", "python",
"webgl", "CSS", "QTWebEngine", "linux", "webview"],
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License (GPL) ",
"Operating System :: POSIX :: Linux",
"Environment :: Web Environment",
"Topic :: Desktop Environment",
"Environment :: X11 Applications",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: User Interfaces",
],
data_files=[
("/usr/bin/", ["bin/jak-cli"])
],
install_requires=[
"PySide2",
"PyQt5"
],
)