-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (32 loc) · 1.14 KB
/
setup.py
File metadata and controls
42 lines (32 loc) · 1.14 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
39
40
41
42
from distutils.core import setup
from setuptools import find_packages
setup(
# Application name:
name="HomeLab",
# Version number (initial):
version="0.1.36",
scripts=['homelab/homelab'],
# Application author details:
author="Nils Wenzler",
author_email="nils.wenzler@crowgames.de",
# Packages
packages=["homelab","homelab.webserver","homelab.static","homelab.analysis", "homelab.test", "homelab.websocket", "homelab.control"],
package_data={
# If any package contains *.txt files, include them:
'': ['*.html', '*.js', '*.json','*.md'],
},
# Include additional files into the package
include_package_data=True,
zip_safe=False,
# Details
url="http://pypi.python.org/pypi/HomeLab/",
#
license="GPL-v3.0",
description="Smart Home Security Platform",
long_description=open("README.md").read(),
long_description_content_type='text/markdown', # This is important!
# Dependent packages (distributions)
install_requires=[
"websockets", "pympler", "scapy", "requests", "netifaces", "appdirs", "flask", "flask-cors", "netaddr", "autoupgrade"
],
)