2016-07-27 14:45:34 +02:00
|
|
|
import sys
|
2022-09-27 14:52:32 +02:00
|
|
|
import os
|
2023-12-17 01:00:38 +01:00
|
|
|
from setuptools import setup
|
|
|
|
from setuptools.command.install import install
|
2016-08-08 11:10:18 +02:00
|
|
|
|
2023-12-17 01:00:38 +01:00
|
|
|
version = '1.0.0'
|
2022-09-27 14:52:32 +02:00
|
|
|
|
2023-12-17 01:00:38 +01:00
|
|
|
MODULES = ['argparse', 'PyQt5', 'PyAudio', 'numpy', 'opencv-python', 'cv2',
|
|
|
|
'pydenticon', 'pyqtconsole', 'toxygen_wrapper'] # qweechat
|
2022-09-27 14:52:32 +02:00
|
|
|
|
|
|
|
def get_packages():
|
2023-12-17 01:00:38 +01:00
|
|
|
directory = os.path.join(os.path.dirname(__file__), 'tox_wrapper')
|
2022-09-27 14:52:32 +02:00
|
|
|
for root, dirs, files in os.walk(directory):
|
|
|
|
packages = map(lambda d: 'toxygen.' + d, dirs)
|
|
|
|
packages = ['toxygen'] + list(packages)
|
|
|
|
return packages
|
2016-07-06 15:25:04 +02:00
|
|
|
|
|
|
|
class InstallScript(install):
|
2016-07-11 16:24:39 +02:00
|
|
|
"""This class configures Toxygen after installation"""
|
2016-07-06 15:25:04 +02:00
|
|
|
|
2016-07-05 20:43:51 +02:00
|
|
|
def run(self):
|
|
|
|
install.run(self)
|
2017-11-05 10:13:28 +01:00
|
|
|
|
2016-07-05 20:43:51 +02:00
|
|
|
setup(name='Toxygen',
|
2016-07-06 15:25:04 +02:00
|
|
|
version=version,
|
2016-07-05 20:43:51 +02:00
|
|
|
description='Toxygen - Tox client',
|
|
|
|
long_description='Toxygen is powerful Tox client written in Python3',
|
2022-10-27 09:07:28 +02:00
|
|
|
url='https://git.plastiras.org/emdee/toxygen/',
|
2022-10-18 03:15:22 +02:00
|
|
|
keywords='toxygen Tox messenger',
|
2016-07-05 20:43:51 +02:00
|
|
|
author='Ingvar',
|
2022-10-18 03:15:22 +02:00
|
|
|
maintainer='',
|
2016-07-05 20:43:51 +02:00
|
|
|
license='GPL3',
|
2022-09-27 14:52:32 +02:00
|
|
|
packages=get_packages(),
|
2016-07-06 15:25:04 +02:00
|
|
|
install_requires=MODULES,
|
2016-07-05 20:43:51 +02:00
|
|
|
include_package_data=True,
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3 :: Only',
|
2023-12-17 01:00:38 +01:00
|
|
|
'Programming Language :: Python :: 3.11',
|
2016-07-05 20:43:51 +02:00
|
|
|
],
|
|
|
|
entry_points={
|
2022-09-27 14:52:32 +02:00
|
|
|
'console_scripts': ['toxygen=toxygen.main:main']
|
2016-07-05 20:43:51 +02:00
|
|
|
},
|
|
|
|
cmdclass={
|
2023-12-17 01:00:38 +01:00
|
|
|
'install': InstallScript,
|
2022-10-18 03:15:22 +02:00
|
|
|
},
|
|
|
|
zip_safe=False
|
|
|
|
)
|