Files
Hippolyzer/setup.py

104 lines
3.4 KiB
Python
Raw Normal View History

"""
Copyright 2008, Linden Research, Inc.
2021-04-30 17:30:24 +00:00
See NOTICE.md for previous contributors
Copyright 2021, Salad Dais
All Rights Reserved.
2021-04-30 17:30:24 +00:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
2021-04-30 17:30:24 +00:00
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
Lesser General Public License for more details.
2021-04-30 17:30:24 +00:00
You should have received a copy of the GNU Lesser General Public License
along with this program; if not, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""
2021-04-30 17:30:24 +00:00
from os import path
2021-05-01 04:59:55 +00:00
from setuptools import setup, find_packages
2021-04-30 17:30:24 +00:00
here = path.abspath(path.dirname(__file__))
2008-06-27 15:10:24 +00:00
2021-05-04 15:35:38 +00:00
version = '0.3.2'
2008-06-27 15:10:24 +00:00
2021-04-30 17:30:24 +00:00
with open(path.join(here, 'README.md')) as readme_fh:
readme = readme_fh.read()
setup(
name='hippolyzer',
version=version,
description="Analysis tools for SL-compatible virtual worlds",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
2021-05-01 00:03:53 +00:00
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: MacOS",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Networking :: Monitoring",
2021-04-30 17:30:24 +00:00
"Topic :: Software Development :: Libraries :: Python Modules",
2021-05-01 00:03:53 +00:00
"Topic :: Software Development :: Testing",
2021-04-30 17:30:24 +00:00
],
author='Salad Dais',
2021-05-01 00:03:53 +00:00
author_email='SaladDais@users.noreply.github.com',
url='https://github.com/SaladDais/Hippolyzer/',
2021-04-30 17:30:24 +00:00
license='LGPLv3',
2021-05-01 04:59:55 +00:00
packages=find_packages(include=["hippolyzer", "hippolyzer.*"]),
2021-04-30 17:30:24 +00:00
package_data={
2021-05-01 00:03:53 +00:00
'hippolyzer': [
2021-05-01 21:16:10 +00:00
'apps/message_builder.ui',
'apps/proxy_mainwindow.ui',
'apps/filter_dialog.ui',
'apps/addon_dialog.ui',
2021-05-01 00:03:53 +00:00
'lib/base/message/data/message_template.msg',
'lib/base/message/data/message.xml',
'lib/base/network/data/ca-bundle.crt',
'lib/proxy/data/static_data.db2',
'lib/proxy/data/static_index.db2',
'lib/proxy/data/LICENSE-artwork.txt',
2021-04-30 17:30:24 +00:00
],
},
entry_points={
'console_scripts': {
'hippolyzer-gui = hippolyzer.apps.proxy_gui:gui_main',
'hippolyzer-cli = hippolyzer.apps.proxy:main'
}
},
2021-04-30 17:30:24 +00:00
zip_safe=False,
python_requires='>=3.8',
install_requires=[
'llbase>=1.2.5',
'defusedxml',
2021-05-01 14:01:47 +00:00
'aiohttp<4.0.0',
2021-04-30 17:30:24 +00:00
'recordclass',
'lazy-object-proxy',
2021-05-01 14:01:47 +00:00
'arpeggio',
# requests breaks with newer idna
'idna<3,>=2.5',
2021-05-01 00:03:53 +00:00
# 7.x will be a major change.
'mitmproxy<7.0.0',
2021-05-01 14:01:47 +00:00
# For REPLs
'ptpython<4.0',
# JP2 codec
'Glymur<1.0',
'numpy<2.0',
2021-05-01 00:03:53 +00:00
# These could be in extras_require if you don't want a GUI.
2021-05-01 21:52:13 +00:00
'pyside2<6.0',
2021-05-01 00:03:53 +00:00
'qasync',
2021-04-30 17:30:24 +00:00
],
2021-05-01 14:01:47 +00:00
tests_require=[
"pytest",
2021-05-05 21:30:01 +00:00
"aioresponses",
2021-05-01 14:01:47 +00:00
],
2021-04-30 17:30:24 +00:00
)