forked from IanTerzo/Neutron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 985 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
28
from setuptools import setup, find_packages
import codecs
import os
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
# Setting up
setup(
name="neutron-web",
version='0.3',
author="IanTerzo (Ian Baldelli)",
author_email="[email protected]",
description="Create modern cross-platform apps in Python using HTML and CSS",
long_description_content_type="text/markdown",
long_description=long_description,
packages=['Neutron'],
install_requires=['pywebview', 'bs4', 'keyboard', 'lxml'],
keywords=['python', 'HTML', 'CSS', 'GUI', 'desktop apps'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
]
)