toxygen/setup.py

77 lines
2.1 KiB
Python
Raw Permalink Normal View History

2016-07-05 18:43:51 +00:00
from setuptools import setup
from setuptools.command.install import install
from platform import system
2016-07-06 13:25:04 +00:00
from subprocess import call
from toxygen.util import program_version
2016-07-27 12:45:34 +00:00
import sys
2016-07-05 18:43:51 +00:00
2016-07-06 13:25:04 +00:00
version = program_version + '.0'
2017-06-15 18:34:43 +00:00
MODULES = ['numpy', 'PyQt5']
2016-07-06 13:25:04 +00:00
2016-07-26 16:09:57 +00:00
if system() in ('Windows', 'Darwin'):
2017-06-15 18:34:43 +00:00
MODULES.append('PyAudio')
2016-07-26 16:09:57 +00:00
else:
try:
import pyaudio
except ImportError:
2017-06-15 18:34:43 +00:00
MODULES.append('PyAudio')
2016-08-08 09:10:18 +00:00
2017-06-12 21:36:45 +00:00
DEP_LINKS = []
2016-08-08 09:10:18 +00:00
if system() == 'Windows':
2017-06-12 21:36:45 +00:00
DEP_LINKS = [] # TODO: add opencv.whl
2016-07-06 13:25:04 +00:00
class InstallScript(install):
2016-07-11 14:24:39 +00:00
"""This class configures Toxygen after installation"""
2016-07-06 13:25:04 +00:00
2016-07-05 18:43:51 +00:00
def run(self):
install.run(self)
2016-07-26 16:09:57 +00:00
try:
if system() == 'Windows':
call(["toxygen", "--configure"])
else:
call(["toxygen", "--clean"])
except:
2016-07-27 12:45:34 +00:00
try:
params = list(filter(lambda x: x.startswith('--prefix='), sys.argv))
if params:
path = params[0][len('--prefix='):]
if path[-1] not in ('/', '\\'):
path += '/'
path += 'bin/toxygen'
if system() == 'Windows':
call([path, "--configure"])
else:
call([path, "--clean"])
except:
pass
2016-07-05 18:43:51 +00:00
setup(name='Toxygen',
2016-07-06 13:25:04 +00:00
version=version,
2016-07-05 18:43:51 +00:00
description='Toxygen - Tox client',
long_description='Toxygen is powerful Tox client written in Python3',
2016-10-27 21:55:34 +00:00
url='https://github.com/toxygen-project/toxygen/',
2016-07-11 14:24:39 +00:00
keywords='toxygen tox messenger',
2016-07-05 18:43:51 +00:00
author='Ingvar',
2016-07-11 14:24:39 +00:00
maintainer='Ingvar',
2016-07-05 18:43:51 +00:00
license='GPL3',
2016-07-06 13:25:04 +00:00
packages=['toxygen', 'toxygen.plugins', 'toxygen.styles'],
install_requires=MODULES,
2016-08-08 09:10:18 +00:00
dependency_links=DEP_LINKS,
2016-07-05 18:43:51 +00:00
include_package_data=True,
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2016-07-05 18:43:51 +00:00
],
entry_points={
2016-07-06 13:25:04 +00:00
'console_scripts': ['toxygen=toxygen.main:main'],
2016-07-05 18:43:51 +00:00
},
cmdclass={
2016-07-06 13:25:04 +00:00
'install': InstallScript,
2016-07-05 18:43:51 +00:00
},
)