-
ViaFerrata authoredViaFerrata authored
setup.py 594 B
#!/usr/bin/env python
from setuptools import setup, find_packages
with open('requirements.txt') as fobj:
requirements = [l.strip() for l in fobj.readlines()]
setup(
name='orcasong',
version='1.0',
description='Makes images for a NN based on the hit information of neutrino events in the neutrino telescope KM3NeT-ORCA',
url='https://github.com/ViaFerrata/OrcaSong',
author='Michael Moser',
author_email='mmoser@km3net.de, michael.m.moser@fau.de',
license='AGPL',
install_requires=requirements,
packages=find_packages(),
include_package_data=True,
)