Skip to content

Commit

Permalink
build: Add proper dependencies in setup.py
Browse files Browse the repository at this point in the history
This ensures that proper package dependency resolving is happening when
building a wheel distribution and installing the .whl package.

Signed-off-by: David Sommerseth <[email protected]>
  • Loading branch information
dsommers committed Oct 22, 2021
1 parent 728eab1 commit 4c687f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OpenVPN Connector Setup
# - Configure OpenVPN 3 Linux for OpenVPN Cloud
#
# Copyright (C) 2020 OpenVPN Inc. <[email protected]>
# Copyright (C) 2020 David Sommerseth <[email protected]>
# Copyright (C) 2020 - 2021 OpenVPN Inc. <[email protected]>
# Copyright (C) 2020 - 2021 David Sommerseth <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
Expand Down Expand Up @@ -31,6 +31,7 @@
name = 'openvpn-connector-setup',
version = ocs_version,
packages=find_packages(),
install_requires = [ 'dbus-python', 'cryptography' ],
entry_points = {
'console_scripts': ['openvpn-connector-setup=openvpn.connector.main:main']
},
Expand Down

0 comments on commit 4c687f5

Please sign in to comment.