-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (42 loc) · 1.23 KB
/
setup.py
File metadata and controls
51 lines (42 loc) · 1.23 KB
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
45
46
47
48
49
50
51
from setuptools import setup, find_packages
setup(
name='materialsdatabank',
version='0.0.1',
description='An Information Portal for 3D atomic electron tomography data',
long_description='An Information Portal for 3D atomic electron tomography data',
url='https://github.com/OpenChemistry/materialdatabank',
author='Kitware Inc',
license='BSD 3-Clause',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.5',
],
keywords='',
packages=find_packages(),
extras_require={
'worker': ['girder_worker', 'pillow']
},
install_requires=[
'girder_client>=2.3.0',
'click',
'jsonpath-rw',
'bibtexparser',
'numpy',
'scipy',
'periodictable',
'h5py',
'avogadro'
],
entry_points= {
'girder_worker_plugins': [
'mdb = materialsdatabank.girder_worker:MDBPlugin',
],
'console_scripts': [
'mdb=materialsdatabank:cli'
]
}
)