-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 921 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 921 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
25
26
27
28
29
30
31
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
readme = f.read()
setup(
name='meile',
version='0.5.1',
description='Meile dVPN powered by the Sentinel Network',
long_description=readme,
long_description_content_type="text/markdown",
author='MathNodes',
author_email='freQniK@mathnodes.com',
url='https://github.com/MathNodes/meile',
license='MIT',
keywords='vpn, dvpn, sentinel, crypto, tui, privacy, security ',
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
package_dir={"": "src"},
packages=find_packages(where="src"),
install_requires=['requests', 'npyscreen', 'prettytable'],
package_data={'meile': ['config.ini','logo.uni']},
entry_points = {
'console_scripts': ['meile = meile.meile:main'],
}
)