-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.14 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.14 KB
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="rtestbench",
version="0.2.1",
packages=find_packages(),
install_requires=[
'pyvisa >=1.9',
'pyvisa-py >= 0.3',
'pyvisa-sim >= 0.4',
'pyusb',
'numpy >=1.13.0',
'pandas >=0.25.0',
'matplotlib >=3.0.3',
],
extras_require={
'hdf5': ['tables >= 3.5.2'],
'feather': ['feather-format >= 0.4.1'],
},
author="Alexandre Quenon",
author_email="aquenon@hotmail.be",
description="A package to create a software remote test bench to control an actual electronic test bench remotely",
long_description=long_description,
url="https://github.com/Arkh42/rtestbench",
project_urls={
"Bug Tracker": "https://github.com/Arkh42/rtestbench/issues",
"Documentation": "https://github.com/Arkh42/rtestbench",
"Source Code": "https://github.com/Arkh42/rtestbench",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Electronics",
],
)