-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 999 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
author = "Christian Bespin, Rasmus Partzsch"
author_email = "[email protected], [email protected]"
# Requirements
install_requires = [
"pytest",
"numpy",
"tables",
"coloredlogs",
"pyzmq",
"online_monitor",
"tqdm",
]
with open("VERSION") as version_file:
version = version_file.read().strip()
setup(
name="aidatlu",
version=version,
description="Control software for AIDA-2020 TLU",
url="https://github.com/Silab-Bonn/aidatlu",
license="License AGPL-3.0 license",
long_description="Repository for controlling the AIDA-2020 Trigger Logic Unit (TLU) with Python using uHAL bindings from IPbus.",
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
install_requires=install_requires,
python_requires=">=3.8",
packages=find_packages(),
include_package_data=True,
platforms="posix",
)