-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
executable file
·40 lines (37 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from glob import glob
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: X11 Applications :: Qt',
'Framework :: Twisted',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Natural Language :: English',
'Topic :: Software Development :: Libraries :: Python Modules'
]
setup(
name='qt4reactor',
version='1.6',
license='MIT',
classifiers=classifiers,
author='Glenn H. Tarbox',
author_email='glenn@tarbox.org',
description='Twisted Qt Integration',
long_description=read('README.rst'),
url='https://github.com/ghtdak/qtreactor',
download_url='https://github.com/ghtdak/qtreactor/tarball/master/#egg-qt4reactor.1.6',
scripts=glob("./bin/*"),
packages=find_packages(),
py_modules=['qt4reactor'],
keywords=['Qt', 'twisted'],
install_requires=['twisted']
)