-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.35 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
"""Set up file for camacq-plugins package."""
from pathlib import Path
import setuptools
PROJECT_DIR = Path(__file__).parent.resolve()
VERSION = (
(PROJECT_DIR / "camacqplugins" / "VERSION").read_text(encoding="utf-8").strip()
)
README_FILE = PROJECT_DIR / "README.md"
LONG_DESCRIPTION = README_FILE.read_text(encoding="utf-8")
REQUIRES = ["camacq>=0.8.0", "matplotlib", "pandas", "scipy"]
setuptools.setup(
name="camacq-plugins",
version=VERSION,
url="https://github.com/CellProfiling/camacq-plugins",
author="Martin Hjelmare",
author_email="[email protected]",
description="Plugins for camacq",
license="Apache License 2.0",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
python_requires=">=3.10",
install_requires=REQUIRES,
entry_points={
"camacq.plugins": [
"gain = camacqplugins.gain",
"production = camacqplugins.production",
],
},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
)