-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 753 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 753 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
30
import setuptools
pkg_name="mountainlab_pytools"
setuptools.setup(
name=pkg_name,
version="0.7.5",
author="Jeremy Magland",
author_email="[email protected]",
description="Tools for using MountainLab with python",
url="https://github.com/magland/mountainlab_pytools",
packages=setuptools.find_packages(),
package_data={
'': ['mlproc/*.js']
},
install_requires=[
'requests',
'numpy',
'numpydoc',
'ipython',
'vdom',
'ipywidgets',
'jp_proxy_widget'
],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
)