-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
setup.py
46 lines (43 loc) · 1.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import v2ray_util
with open("README.md", "r", encoding='UTF-8') as fh:
long_description = fh.read()
setup(
name='v2ray-util',
version=v2ray_util.__version__,
description="a tool to manage v2ray config json",
long_description=long_description,
long_description_content_type="text/markdown",
keywords='python v2ray multi-v2ray vmess socks5 vless trojan xray xtls reality',
author='Jrohy',
author_email='euvkzx@gmail.com',
url='https://github.com/Jrohy/multi-v2ray',
license='GPL',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
python_requires='>=3',
entry_points={
'console_scripts': [
'v2ray-util = v2ray_util.main:menu'
]
},
classifiers=[
'Topic :: Utilities',
'Development Status :: 5 - Production/Stable',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)