-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathsetup.py
More file actions
80 lines (75 loc) · 2.68 KB
/
setup.py
File metadata and controls
80 lines (75 loc) · 2.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
import os
import sys
from setuptools import find_packages, setup
from openwisp_radius import get_version
if sys.argv[-1] == "publish":
# delete any *.pyc, *.pyo and __pycache__
os.system('find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf')
os.system("python setup.py sdist bdist_wheel")
os.system("twine upload -s dist/*")
os.system("rm -rf dist build")
args = {"version": get_version()}
print("You probably want to also tag the version now:")
print(" git tag -a %(version)s -m 'version %(version)s'" % args)
print(" git push --tags")
sys.exit()
setup(
name="openwisp-radius",
version=get_version(),
license="GPL3",
author="OpenWISP",
author_email="support@openwisp.io",
description="OpenWISP Radius",
long_description=open("README.rst").read(),
url="https://openwisp.org",
download_url="https://github.com/openwisp/openwisp-radius/releases",
platforms=["Platform Independent"],
keywords=["django", "freeradius", "networking", "openwisp"],
packages=find_packages(exclude=["tests*", "docs*"]),
include_package_data=True,
zip_safe=False,
install_requires=[
(
"openwisp-notifications @"
"https://github.com/openwisp/openwisp-notifications/"
"archive/refs/heads/1.3.tar.gz"
),
(
"openwisp-users @"
"https://github.com/openwisp/openwisp-users/archive/refs/heads/1.3.tar.gz"
),
(
"openwisp-utils[rest,celery] @"
"https://github.com/openwisp/openwisp-utils/archive/refs/heads/1.3.tar.gz"
),
"passlib~=1.7.1",
"djangorestframework-link-header-pagination~=0.1.1",
"weasyprint>=65,<67",
"dj-rest-auth>=6.0,<7.1",
"django-sendsms~=0.5.0",
"jsonfield>=3.1,<3.3",
"django-private-storage~=3.1.0",
"django-ipware>=5.0,<7.1",
"pyrad~=2.4",
# Python 3.13 removed built-in telnetlib module,
# thus we use Exscript for telnet.
"Exscript~=2.6.28",
],
extras_require={
# https://github.com/IdentityPython/djangosaml2/issues/414
"saml": ["djangosaml2==1.11.1"],
"openvpn_status": ["openvpn-status~=0.2.1"],
},
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",
],
)