-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 728 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (21 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'''
Used for building the python_wireguard package.
'''
from pathlib import Path
import os
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
version = os.environ.get('RELEASE_VERSION')
setup(name='python_wireguard',
version=version,
description='A python wrapper for controlling Wireguard',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/jarnoaxel/python-wireguard',
author='jarnoaxel',
license='GPL-3.0-or-later',
packages=['python_wireguard'],
include_package_data=True,
keywords=['vpn', 'wireguard'],
zip_safe=False)