-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
41 lines (37 loc) · 929 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
from setuptools import setup
setup(
name='mordred-web',
version='0.3.4',
description='molecular descriptor calculator web UI',
license='BSD3',
author='Hirotomo Moriwaki',
author_email='philopon.dependence@gmail.com',
url='https://github.com/mordred-descriptor/mordred-web',
platforms=['any'],
keywords='QSAR chemoinformatics',
packages=[
'mordred.web',
'mordred.web.handler',
],
package_dir={
'mordred.web': 'python/mordred_web',
'mordred.web.handler': 'python/mordred_web/handler',
},
package_data={
'mordred.web': [
'static/*',
'static/**/*',
],
},
install_requires=[
'mordred>=0.3.1',
'tornado>=4.5',
'psutil>=5.0',
'base58>=0.2.0',
'numpy>=1.10',
'six>=1.10',
'loky>=1.0',
'Pillow>=4.1'
'openpyxl>=2.4',
],
)