forked from icecube/ic3-labels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 686 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 686 Bytes
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
here = os.path.dirname(__file__)
about = {}
with open(os.path.join(here, 'ic3_labels', '__about__.py')) as fobj:
exec(fobj.read(), about)
setup(
name='ic3_labels',
version=about['__version__'],
packages=find_packages(),
install_requires=[
'numpy', 'click', 'pyyaml', 'scipy', 'MCEq', 'crflux',
'nuVeto',
],
include_package_data=True,
author=about['__author__'],
author_email=about['__author_email__'],
maintainer=about['__author__'],
maintainer_email=about['__author_email__'],
description=about['__description__'],
url=about['__url__']
)