forked from ezaquarii/vpn-at-home
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·28 lines (25 loc) · 1.02 KB
/
setup.py
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
#!/usr/bin/env python3
from setuptools import find_packages, setup
# allow setup.py to be run from any path
# os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='vpnathome',
packages=find_packages(where='backend'),
package_dir={'vpnathome': 'backend/vpnathome'},
version='2.1.1',
include_package_data=True,
package_data={'': ['*/*', '*/*/*', '*/*/*/*', '*/*/*/*/*']}, # nasty hack
scripts=['scripts/init.sh', 'scripts/manage.py', 'scripts/run_daphne.sh', 'scripts/deploy_vpn.sh', 'scripts/inventory.sh'],
license='GPL-3',
description='1-click, self-hosted deployment of OpenVPN with DNS ad blocking sinkhole',
url='https://github.com/ezaquarii/vpn-at-home',
author='Chris Narkiewicz',
author_email='[email protected]',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python'
],
)