-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
35 lines (31 loc) · 843 Bytes
/
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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
LONG_DESCRIPTION = \
"""Python tools for Qt."""
if os.path.exists('MANIFEST'):
os.remove('MANIFEST')
if __name__ == '__main__':
setup(
name='qtools',
version='0.1.2', # alpha pre-release
author='Cyrille Rossant',
author_email='rossant@github',
packages=['qtools',
'qtools.qtpy',
'qtools.tests',
],
package_data={
# 'qtools': [],
},
# scripts=[''],
url='https://github.com/rossant/qtools',
license='LICENSE.md',
description='Python tools for Qt.',
long_description=LONG_DESCRIPTION,
install_requires=[
],
test_suite='nose.collector',
)