-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
28 lines (26 loc) · 988 Bytes
/
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
from setuptools import setup
from setuptools import find_packages
setup(name='iprs',
version='1.0.4',
description='Intelligent Processing for Radar Signals',
author='Zhi Liu',
author_email='[email protected]',
url='http://iridescent.ink/iprs3.0',
download_url='https://github.com/antsfamily/iprs',
license=None,
install_requires=['numpy>=1.9.1',
'matplotlib',
'scipy>=0.14',
'scikit-image',
'h5py',
'Pillow',
'six>=1.9.0',
'progressbar2',
'scikit-learn',
'lxml',
'pyyaml'],
classifiers=['Programming Language :: Python :: 3',
'Operating System :: OS Independent',],
packages=find_packages(),
include_package_data=True,
)