-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (44 loc) · 1.48 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
42
43
44
45
46
"""Python driver and command line tool for IKA instruments."""
from setuptools import setup
with open('README.md') as in_file:
long_description = in_file.read()
setup(
name="ika-control",
version="0.6.1",
description="Python driver for IKA instruments.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/numat/ika/",
author="Alex Ruddick",
author_email="[email protected]",
packages=['ika'],
install_requires=['pyserial'],
extras_require={
'test': [
'pytest>=6,<8',
'pytest-cov>=5,<6',
'pytest-asyncio==0.*',
'pytest-xdist==3.*',
'ruff==0.6.8',
'mypy==1.13.0',
'types-pyserial==3.5.0.20240311'
],
},
entry_points={
'console_scripts': [('ika = ika:command_line')]
},
license='GPLv3',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
],
)