mirror of
https://github.com/LorenEteval/Furious.git
synced 2026-09-22 23:08:08 +03:00
64 lines
2.3 KiB
Python
64 lines
2.3 KiB
Python
# Copyright (C) 2024–present Loren Eteval & contributors <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 Furious.Frozenlib.Constants import *
|
||
|
||
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=APPLICATION_DESCRIPTION,
|
||
long_description=long_description,
|
||
long_description_content_type='text/markdown',
|
||
author=APPLICATION_AUTHOR_NAME,
|
||
author_email=APPLICATION_AUTHOR_EMAIL,
|
||
url=APPLICATION_ABOUT_PAGE,
|
||
packages=find_packages(),
|
||
package_data={'Furious': ['Data/**']},
|
||
exclude_package_data={'Furious': ['Data/*.md', 'Data/**/*.md']},
|
||
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',
|
||
],
|
||
)
|