forked from HIPS/neural-fingerprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
18 lines (17 loc) · 898 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from __future__ import absolute_import
from distutils.core import setup
setup(name='neuralfingerprint',
version='1.0.0',
description='Computes differentiable fingerprints of molecular graphs.',
author='David Duvenaud and Dougal Maclaurin',
author_email="dduvenaud@seas.harvard.edu, maclaurin@physics.harvard.edu",
packages=['neuralfingerprint'],
install_requires=['numpy>=1.8', 'scipy>=0.15', 'autograd'],
keywords=['Chemistry', 'Molecular Fingerprints', 'Morgan fingerprints',
'machine learning', 'Circular fingerprints', 'neural networks',
'Python', 'Numpy', 'Scipy'],
url='https://github.com/HIPS/neural-fingerprint',
license='MIT',
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'])