-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·52 lines (47 loc) · 1.69 KB
/
setup.py
File metadata and controls
executable file
·52 lines (47 loc) · 1.69 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
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
from setuptools import find_packages, setup
from openwisp_monitoring import get_version
def get_install_requires():
"""parse requirements.txt, ignore links, exclude comments"""
requirements = []
for line in open("requirements.txt").readlines():
# skip to next iteration if comment or empty line
if (
line.startswith("#")
or line == ""
or line.startswith("http")
or line.startswith("git")
):
continue
# add line to requirements
requirements.append(line)
return requirements
setup(
name="openwisp-monitoring",
version=get_version(),
license="GPL3",
author="OpenWISP",
author_email="support@openwisp.io",
description="OpenWISP Monitoring",
long_description=open("README.rst").read(),
url="http://openwisp.org",
download_url="https://github.com/openwisp/openwisp-monitoring/releases",
platforms=["Platform Independent"],
keywords=["django", "netjson", "networking", "openwisp", "monitoring"],
packages=find_packages(exclude=["tests", "docs"]),
include_package_data=True,
zip_safe=False,
install_requires=get_install_requires(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Networking",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
)