-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (45 loc) · 1.52 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
"""Package manager setup for Sartorius driver."""
from setuptools import setup
with open('README.md') as in_file:
long_description = in_file.read()
setup(
name='sartorius',
version="0.5.0",
description='Python driver for Sartorius and Minebea Intec scales.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/numat/sartorius/',
author='Patrick Fuller',
author_email='[email protected]',
maintainer='Alex Ruddick',
maintainer_email='[email protected]',
packages=['sartorius'],
package_data={'sartorius': ['py.typed']},
install_requires=['pyserial'],
extras_require={
'test': [
'mypy==1.14.1',
'pytest>=8,<9',
'pytest-cov>=5,<6',
'pytest-asyncio==0.*',
'ruff==0.5.5',
'types-pyserial',
]
},
entry_points={
'console_scripts': [('sartorius = sartorius:command_line')]
},
license='GPLv2',
classifiers=[
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Programming Language :: Python',
'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'
]
)