-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 787 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
setup(
name="pioreactor-precision-temperature-plugin",
version="0.2.10",
python_requires=">=3.13,<3.14",
license_files=("LICENSE.txt",),
description="Precision temperature automation for Pioreactor using FIR + MLX90632",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Cam Davidson-Pilon",
author_email="info@pioreactor.com",
url="https://github.com/Pioreactor/pioreactor-precision-temperature-plugin",
packages=find_packages(),
include_package_data=True,
entry_points={
"pioreactor.plugins": "pioreactor_precision_temperature_plugin = pioreactor_precision_temperature_plugin"
},
)