-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.02 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Set up structure-property-visualizer"""
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='structure-property-visualizer',
author='Leopold Talirz',
author_email='[email protected]',
description=
'A template for Materials Cloud DISCOVER sections using bokeh server.',
license='MIT',
classifiers=['Programming Language :: Python'],
version='0.2.0',
install_requires=[
'bokeh~=1.4.0',
'jsmol-bokeh-extension~=0.2.1',
'requests~=2.21.0',
'graphviz~=0.13.2',
'pandas~=1.0.5',
'sqlalchemy~=1.3.0',
],
extras_require={
'pre-commit': ['pre-commit~=2.2', 'pylint~=2.6.0'],
'aiida': ['aiida-core~=1.6']
})