-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (29 loc) · 1 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
from __future__ import print_function
from setuptools import setup, find_packages
name = 'spectraclass'
LONG_DESCRIPTION = 'Jupyterlab workbench supporting visual exploration and classification of high dimensional sensor data.'
version = "0.1"
setup_args = dict(
name=name,
version=version,
description=LONG_DESCRIPTION,
include_package_data=True,
install_requires=[ 'ipywidgets>=7.0.0', ],
packages=find_packages(),
zip_safe=False,
author='Thomas Maxwell',
author_email='[email protected]',
url='https://github.com/nasa-nccs-cds/spectraclass',
data_files=[ ],
keywords=[ 'ipython', 'jupyter', 'widgets', ],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: IPython',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)
setup(**setup_args)