-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 951 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
from setuptools import setup
requirements = ["pyqt5-sip", "PyQt5", "PyYAML==5.1", "schedule==0.6.0", "tornado>=6.0"]
test_requirements = [
"pytest",
"pytest-cov",
"pytest-faulthandler",
"pytest-mock",
"pytest-qt",
"pytest-xvfb",
]
setup(
name="frame",
version="0.0.1",
description="A PyQt5 GUI application",
author="scott carver",
author_email="scott@artificia.org",
url="https://github.com/scztt/frame",
packages=["frame", "frame.images", "frame.tests", "frame.server"],
package_data={"frame.images": ["*.png"]},
entry_points={"console_scripts": ["frame=frame.frame:main"]},
install_requires=requirements,
zip_safe=False,
keywords="frame",
classifiers=[
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
],
test_suite="tests",
tests_require=test_requirements,
)