-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 812 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding: utf-8 -*-
from __future__ import annotations
from setuptools import find_packages
from setuptools import setup
setup(
name="spectrometer-reading-plugin",
version="0.4.0",
license="MIT",
description="Take spectrometer readings (between OD readings) from the Adafruit AS7341 attached to your Pioreactor",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author_email="info@pioreactor.com",
author="Kelly Tran, Cameron Davidson-Pilon, Pioreactor",
url="https://github.com/Pioreactor/spectrometer-reading-plugin",
packages=find_packages(),
include_package_data=True,
install_requires=[],
entry_points={"pioreactor.plugins": "spectrometer_reading_plugin = spectrometer_reading_plugin"},
)