-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import setuptools
setuptools.setup(
name="btc",
version="0.1.0",
author="Nicolas Vetsch",
author_email="vetschnicolas@gmail.com",
description="Python module for interfacing with Büchi Temperature Controllers via their RS232 port.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/vetschn/btc",
project_urls={"Bug Tracker": "https://github.com/vetschn/btc/issues"},
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Chemistry",
],
keywords=["Büchi", "Temperature Controller", "btc01", "btc02"],
package_dir={"": "src"},
packages=setuptools.find_packages(where="src"),
entry_points={"console_scripts": ["btc_logger=btc:logger"]},
install_requires=["pyserial"],
python_requires=">=3.9",
)