-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (33 loc) · 1023 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
29
30
31
32
33
34
35
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="novnc-rocker",
version="0.0.1",
packages=setuptools.find_packages(),
package_data={'novnc_rocker': ['templates/*.em',
'templates/.htpasswd.em',
'templates/self.pem',
'templates/nginx.conf',
'templates/supervisor.conf',
'templates/turbovnc.conf',
'templates/.htpasswd']},
author="Tully Foote",
author_email="[email protected]",
description="Plugins for rocker that inject noVNC",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tfoote/novnc-rocker",
license='Apache 2.0',
install_requires=[
'bcrypt',
'rocker',
],
entry_points={
'rocker.extensions': [
'fuse = novnc_rocker.fuse:Fuse',
'novnc = novnc_rocker.novnc:NoVNC',
'turbovnc = novnc_rocker.turbovnc:TurboVNC',
]
}
)