Files
LorenEteval_Furious/setup.py
T
2024-10-12 21:30:19 +08:00

62 lines
2.3 KiB
Python

# Copyright (C) 2024 Loren Eteval <loren.eteval@proton.me>
#
# This file is part of Furious.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
from Furious.Version import __version__
from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()
with open('requirements.txt', 'r', encoding='utf-8') as file:
install_requires = file.read().split('\n')
setup(
name='Furious-GUI',
version=__version__,
license='GPL v3.0',
description='A GUI proxy client based on PySide6. Support Xray-core & hysteria',
long_description=long_description,
long_description_content_type='text/markdown',
author='Loren Eteval',
author_email='loren.eteval@proton.me',
url='https://github.com/LorenEteval/Furious',
packages=find_packages(),
package_data={'Furious': ['Data/**']},
include_package_data=True,
install_requires=install_requires,
entry_points={
'gui_scripts': [
'Furious = Furious.__main__:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: End Users/Desktop',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Topic :: Internet',
'Topic :: Internet :: Proxy Servers',
],
)