-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 841 Bytes
/
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
29
30
31
from setuptools import find_packages, setup
setup(
name='wgadmin',
version='0.0.0',
author="Arti Zirk",
author_email="arti@zirk.me",
description="WireGuard VPN Administration interface",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3.5',
install_requires=[
'Flask',
'Flask-WTF',
'Flask-SQLAlchemy'
],
extras_require={
'dev': ['Flask-Testing']
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: System :: Networking',
'Intended Audience :: System Administrators',
'Framework :: Flask'
]
)