-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
41 lines (36 loc) · 1.03 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
41
import sys
if sys.version_info < (3, 6):
print("You need at least Python 3.6 for this application!")
if sys.version_info[0] < 3:
print("try running with python3 {}".format(" ".join(sys.argv)))
sys.exit(1)
try:
from setuptools import setup, find_packages
except ImportError:
print("Could not find setuptools")
print("Try installing them with pip install setuptools")
sys.exit(1)
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='moRFeusQt',
url='https://github.com/Psynosaur/moRFeus_Qt',
version='3.333',
author='Ohan Smit',
author_email='psynosaur@gmail.com',
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
license='LICENSE.txt',
entry_points={
'console_scripts': [
'moRFeusQt = moRFeusQt.__main__:main'
],
},
install_requires=[
'PyQt5==5.11.2',
'hidapi',
'matplotlib',
],
test_suite='tests.mRF_test_suite',
)