-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
55 lines (40 loc) · 1.07 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
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setup(
name='hypers',
version='0.1.1',
packages=[
'hypers',
'hypers.core',
'hypers.plotting.view',
'hypers.plotting.view._form',
'hypers.signal',
'hypers.learning',
'hypers.exceptions'
],
python_requires='>=3.5.0',
url='https://github.com/priyankshah7/hypers',
download_url='https://github.com/priyankshah7/hypers/archive/v0.0.11.tar.gz',
license='BSD 3-Clause',
author='Priyank Shah',
author_email='[email protected]',
description='Hyperspectral data analysis and machine learning',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
keywords=[
'hyperspectral',
'data-analysis',
'clustering',
'matrix-decompositions',
'hyperspectral-analysis',
'machine learning'
],
install_requires=[
'numpy',
'scipy',
'pyqt5',
'pyqtgraph',
'cvxopt'
]
)