-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
44 lines (40 loc) · 926 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
from setuptools import setup
install_requires = [
'jupyter_client==5.2.4',
'nbformat',
'nbconvert',
'tornado',
'ipykernel'
]
extras_require = {
'pyviz': [
'bokeh',
'holoviews',
'cssutils'
]
}
setup_args = dict(
name='nei',
version='0.0.7',
description='Notebook Emacs Interface',
platforms=['Mac OS X', 'Linux'],
license='BSD',
provides=["nei"],
packages=["nei"],
include_package_data = True,
python_requires=">=3.5",
install_requires=install_requires,
extras_require=extras_require,
entry_points={
'console_scripts': [
'nei = nei.cmd:main'
]},
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English"
]
)
if __name__=="__main__":
setup(**setup_args)