-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
19 lines (17 loc) · 827 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from distutils.core import setup
setup(name="PyQt Image Flow",
version="1.0",
description="Easy to use and highly configurable image flow for PyQt.",
author="Martin Altmayer",
author_email="martin.altmayer@web.de",
url="http://www.github.com/MartinAltmayer/ImageFlow/",
license="GPL v3+",
packages=['imageflow'],
package_data={'imageflow': ['process-working.png']},
classifiers = ["Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
"Topic :: Software Development :: User Interfaces"],
)