-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (29 loc) · 980 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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
from platform import system
import numpy as np
import os
version = '0.0.1'
author = 'Ivan Caicedo, Tomasz Hemperek, Toko Hirono'
author_email = '[email protected]'
# requirements for core functionality
install_requires = ['bitarray', 'matplotlib', 'numba', 'numpy', 'pyyaml', 'scipy', 'tables', 'tqdm']
setup(
name='monopix2_daq',
version=version,
description='DAQ for the LF-Monopix2 DMAPS prototype',
url='https://github.com/SiLab-Bonn/lf-monopix2-daq/',
license='',
long_description='',
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
install_requires=install_requires,
python_requires=">=3.0",
packages=find_packages(),
include_package_data=True,
package_data={'': ['README.*', 'VERSION'], 'docs': ['*'], 'monopix_daq': ['*.yaml', '*.bit']},
platforms='any'
)