forked from danyreyna/python-proton-vpn-session
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.03 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.03 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
#!/usr/bin/env python
from setuptools import setup, find_namespace_packages
setup(
name="proton-vpn-session",
version="0.6.4",
description="ProtonVPN Session wrapper",
author="Proton AG",
author_email="contact@protonmail.com",
url="https://github.com/ProtonMail/python-protonvpn-session",
install_requires=["proton-core", "proton-vpn-logger", "cryptography", "PyNaCl", "distro"],
extras_require={
"development": ["pytest", "pytest-coverage", "pytest-asyncio", "flake8", "pylint"]
},
packages=find_namespace_packages(include=['proton.*']),
include_package_data=True,
python_requires=">=3.8",
license="GPLv3",
platforms="OS Independent",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
"Topic :: Security",
]
)