-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (26 loc) · 874 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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
import tjmonopix2
version = tjmonopix2.__version__
author = 'Christian Bespin'
author_email = '[email protected]'
# Requirements
install_requires = ['basil-daq>=3.0.0', 'coloredlogs', 'gitpython', 'numba', 'numpy', 'matplotlib', 'online_monitor', 'pixel_clusterizer', 'pyyaml', 'pyzmq', 'tables', 'tqdm', 'scipy']
setup(
name='tjmonopix2',
version=version,
description='DAQ for TJ-Monopix2 prototype',
url='https://github.com/SiLab-Bonn/tj-monopix2-daq',
license='',
long_description='',
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='any',
)