forked from alexrudd2/ismatec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (47 loc) · 1.56 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
47
48
49
50
"""Python driver for Ismatec Reglo ICC peristaltic pumps."""
from setuptools import setup
with open('README.md') as in_file:
long_description = in_file.read()
setup(
name='ismatec-control',
version='0.4.0',
description="Driver for Ismatec Reglo ICC peristaltic pumps.",
long_description=long_description,
long_description_content_type='text/markdown',
author='Alex Ruddick',
author_email='[email protected]',
license='GPLv3',
url='https://github.com/numat/ismatec',
packages=['ismatec'],
install_requires=[
'pyserial',
],
extras_require={
'test': [
'pytest>=6,<8',
'pytest-cov>=4,<5',
'pytest-asyncio==0.*',
'pytest-xdist==3.*',
'mypy==1.14.1',
'types-pyserial',
'ruff==0.4.7',
],
},
entry_points={
'console_scripts': [('ismatec = ismatec:command_line')],
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"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",
"Topic :: Scientific/Engineering :: Chemistry",
],
)