-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
30 lines (26 loc) · 836 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
#!/usr/bin/env python
from distutils.core import setup
# Information
__author__ = "Silvia Amabilino"
__copyright__ = "Michael Mazanetz, Silvia Amabilino, David Glowacki"
__license__ = "GPLv3"
__version__ = "1.0.0"
__maintainer__ = "Silvia Amabilino"
__email__ = "[email protected]"
__status__ = "Beta"
__description__ = "Recurrent Neural Networks for Drug Discovery"
__url__ = "https://github.com/SilviaAmAm/MolBot"
__requirements__ = [
"scikit-learn >= 0.19.1",
# "tensorflow == 1.9.0",
"keras >= 2.2.0"
]
setup(name='molbot',
version=__version__,
description=__description__,
author=__author__,
author_email=__email__,
url=__url__,
packages=['molbot'],
install_requires= __requirements__
)