-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.23 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
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
from setuptools import setup
with open('requirements.txt') as fobj:
requirements = [l.strip() for l in fobj.readlines()]
setup(
name='orcanet',
description='Runs Neural Networks for usage in the KM3NeT project',
url='https://git.km3net.de/ml/OrcaNet',
author='Michael Moser, Stefan Reck',
license='AGPL',
install_requires=requirements,
packages=[
"orcanet", "orcanet_contrib"
],
include_package_data=True,
setup_requires=['setuptools_scm'],
use_scm_version={
'write_to': 'orcanet/version.txt',
'tag_regex': r'^(?P<prefix>v)?(?P<version>[^\+]+)(?P<suffix>.*)?$',
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'summarize=orcanet.utilities.summarize_training:main',
'orcatrain=orcanet_contrib.parser_orcatrain:main',
'orcapred=orcanet_contrib.parser_orcapred:main',
]
},
)
__author__ = 'Michael Moser and Stefan Reck'