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