-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·40 lines (35 loc) · 1.26 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
#!/usr/bin/env python
"""Set up package."""
from pathlib import Path
from setuptools import find_packages, setup
PROJECT_DIR = Path(__file__).parent.resolve()
VERSION = (PROJECT_DIR / "leicacam" / "VERSION").read_text(encoding="utf-8").strip()
README_FILE = PROJECT_DIR / "README.md"
LONG_DESCRIPTION = README_FILE.read_text(encoding="utf-8")
setup(
name="leicacam",
version=VERSION,
description="Control Leica microscopes with python",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Arve Seljebu",
author_email="[email protected]",
url="https://github.com/MartinHjelmare/leicacam",
packages=find_packages(exclude=["test", "test.*"]),
include_package_data=True,
python_requires=">=3.8",
install_requires=["async_timeout", "pydebug"],
license="MIT",
zip_safe=False,
keywords="leicacam",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)