-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (32 loc) · 924 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
36
37
38
# -*- coding: utf-8 -*-
import sys
from setuptools import find_packages
from setuptools import setup
if not sys.version_info[0] == 3:
sys.exit("Python 3 is required. Use: 'python3 setup.py install'")
dependencies = [
"click",
"pyvisa",
"PyVISA-py",
]
config = {
"version": "0.1",
"name": "linux_gpib_installer",
"url": "https://github.com/jakeogh/linux-gpib-installer",
"license": "Unlicense",
"author": "Justin Keogh",
"author_email": "[email protected]",
"description": "installer for GPIB drivers",
"long_description": __doc__,
"packages": find_packages(exclude=["tests"]),
"include_package_data": True,
"zip_safe": False,
"platforms": "any",
"install_requires": dependencies,
"entry_points": {
"console_scripts": [
"linux-gpib-installer=linux_gpib_installer.linux_gpib_installer:cli",
],
},
}
setup(**config)