forked from SiLab-Bonn/pymosa_mimosa26_interpreter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (26 loc) · 1.28 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
#!/usr/bin/env python
from setuptools import setup, find_packages # This setup relies on setuptools since distutils is insufficient and badly hacked code
version = '0.0.1'
author = 'David-Leon Pohl, Toko Hirono'
author_email = '[email protected],setup.py'
# requirements for core functionality from requirements.txt
with open('requirements.txt') as f:
install_requires = f.read().splitlines()
setup(
name='pyBAR_mimosa26_interpreter',
version=version,
description='This package can be used to interpred raw data from the Mimosa 26 telescope taken with the readout framework pyBAR. It also contains histogramming functions. The interpretation uses numba JIT to increase the speed.',
url='https://github.com/SiLab-Bonn/pyBAR_mimosa26_interpreter',
license='GNU LESSER GENERAL PUBLIC LICENSE Version 2.1',
long_description='',
author=author,
maintainer=author,
author_email=author_email,
maintainer_email=author_email,
install_requires=install_requires,
packages=find_packages(),
include_package_data=True, # accept all data files and directories matched by MANIFEST.in or found in source control
package_data={'': ['README.*', 'VERSION'], 'docs': ['*'], 'examples': ['*']},
keywords=['mimosa', 'test beam', 'pixel'],
platforms='any'
)