-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 937 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
#!/usr/bin/env python
from __future__ import absolute_import
from setuptools import setup
if __name__ == '__main__':
# Provide static information in setup.json
# such that it can be discovered automatically
setup(packages=["detail", "figure"],
name="bokeh-discover-section",
author="Leopold Talirz",
author_email="[email protected]",
description="A template for DISCOVER sections using bokeh server.",
license="MIT",
classifiers=["Programming Language :: Python"],
version="0.1.1",
install_requires=[
"bokeh~=1.3.4",
"jsmol-bokeh-extension~=0.2.1",
"pandas~=0.24.2",
"sqlalchemy~=1.0.19",
"requests~=2.21.0",
],
extras_require={
"pre-commit":
["pre-commit==1.17.0", "prospector==0.12.11", "pylint==1.9.3"]
})