-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 853 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 853 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
27
28
29
#! /usr/bin/env python
# System imports
from setuptools import setup, find_packages
from pip import __file__ as pip_loc
from os import path
# Third-party modules - we depend on numpy for everything
import numpy
setup( name = "pyjacopo",
description = "Python radar library for MXPOL",
version = "1.0",
url='http://gitlab.epfl.ch/wolfensb/pyjacopo/',
author='Daniel Wolfensberger - LTE EPFL',
author_email='daniel.wolfensberger@epfl.ch',
license='GPL-3.0',
packages=['pyjacopo',
'pyjacopo.config_parser',
'pyjacopo.example',
'pyjacopo.algo',
'pyjacopo.raw_reader'],
install_requires=[
'arm_pyart',
'numpy',
'scipy',
'xarray'],
zip_safe=False,
)