forked from biolab/PyQtTester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 687 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 687 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.1.0'
if __name__ == '__main__':
setup(
name="PyQtTester",
description="Test Python Qt (PyQt) applications",
version=VERSION,
author='Bioinformatics Laboratory, FRI UL',
author_email='info@biolab.si',
url='https://github.com/biolab/PyQtTester',
keywords=(
'PyQt', 'testing', 'TDD'
),
packages=find_packages(),
include_package_data=True,
install_requires=(
),
entry_points={
'console_scripts': (
'PyQtTester = pyqttester:main',
),
}
)