-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (37 loc) · 1.35 KB
/
setup.py
File metadata and controls
executable file
·39 lines (37 loc) · 1.35 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
#!/usr/bin/env python
from setuptools import find_packages, setup
from openwisp_firmware_upgrader import get_version
setup(
name="openwisp-firmware-upgrader",
version=get_version(),
license="GPL3",
author="OpenWISP",
author_email="[email protected]",
description="Firmware upgrader module of OpenWISP",
long_description=open("README.rst").read(),
url="http://openwisp.org",
download_url="https://github.com/openwisp/openwisp-firmware-upgrader/releases",
platforms=["Platform Independent"],
keywords=["django", "netjson", "networking", "openwisp", "firmware"],
packages=find_packages(exclude=["tests*", "docs*"]),
include_package_data=True,
zip_safe=False,
install_requires=[
(
"openwisp-controller @"
"https://github.com/openwisp/openwisp-controller/archive/refs/heads/1.3.tar.gz"
),
"django-private-storage~=3.1.0",
],
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 :: 3",
],
)