-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
86 lines (80 loc) · 3.07 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
################################################################################
######## Setup.py - installs all the required packages and dependancies ########
######## when packaging the GCP application for training ########
################################################################################
from setuptools import setup, find_packages
import sys, pathlib
import psp_gcp
#check current Python version is 3 or above
if sys.version_info[0] < 3:
sys.exit('Python 3 is the minimum version requirement')
HERE = pathlib.Path(__file__).parent
README = (HERE / 'README.md').read_text()
setup(name='DCBLSTM_PSP on GCP',
version=psp_gcp.__version__,
description='Running Protein Structure Prediction, on Google Cloud Ai-platform',
long_description=README,
long_description_content_type="text/markdown",
author=psp_gcp.__license__,
author_email=psp_gcp.__authorEmail__,
license=psp_gcp.__license__,
url=psp_gcp.__url__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Scientific/Engineering :: Mathematics'
],
install_requires=[
'Cython',
'pyparsing==2.4.2',
'grpcio==1.34.0',
# 'tensorflow==2.2.0',
'tensorflow==2.5.2',
'tensorboard==2.5.0',
'numpy==1.19.3',
'h5py',
'pandas',
'keras',
'google-cloud==0.34.0',
'google-cloud-core==1.4.1',
'google-api-core==1.26.0',
'google-cloud-storage==1.31.0',
'google-api-python-client==1.12.1',
'google-cloud-logging',
'oauth2client==4.1.3',
'gcsfs',
'requests',
'matplotlib',
'seaborn',
'cloudml-hypertune',
'pydot',
'graphviz',
'pytest'
],
packages=find_packages(),
include_package_data=True,
zip_safe=True)
# old modules/libraries
# 'numpy >= 1.19.3; python_version < "3.9.0"',
# 'google-cloud-logging',
# 'google-cloud-pubsub==2.1.0",
# 'tensorflow-gpu==1.15',
# 'google-cloud-core==1.7.0',
# 'google-cloud-core==1.4.3',
# 'google-cloud-pubsub',