Mercurial > repos > galaxy-australia > alphafold2
comparison docker/alphafold/setup.py @ 1:6c92e000d684 draft
"planemo upload for repository https://github.com/usegalaxy-au/galaxy-local-tools commit a510e97ebd604a5e30b1f16e5031f62074f23e86"
author | galaxy-australia |
---|---|
date | Tue, 01 Mar 2022 02:53:05 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:7ae9d78b06f5 | 1:6c92e000d684 |
---|---|
1 # Copyright 2021 DeepMind Technologies Limited | |
2 # | |
3 # Licensed under the Apache License, Version 2.0 (the "License"); | |
4 # you may not use this file except in compliance with the License. | |
5 # You may obtain a copy of the License at | |
6 # | |
7 # http://www.apache.org/licenses/LICENSE-2.0 | |
8 # | |
9 # Unless required by applicable law or agreed to in writing, software | |
10 # distributed under the License is distributed on an "AS IS" BASIS, | |
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
12 # See the License for the specific language governing permissions and | |
13 # limitations under the License. | |
14 """Install script for setuptools.""" | |
15 | |
16 from setuptools import find_packages | |
17 from setuptools import setup | |
18 | |
19 setup( | |
20 name='alphafold', | |
21 version='2.1.0', | |
22 description='An implementation of the inference pipeline of AlphaFold v2.0.' | |
23 'This is a completely new model that was entered as AlphaFold2 in CASP14 ' | |
24 'and published in Nature.', | |
25 author='DeepMind', | |
26 author_email='alphafold@deepmind.com', | |
27 license='Apache License, Version 2.0', | |
28 url='https://github.com/deepmind/alphafold', | |
29 packages=find_packages(), | |
30 install_requires=[ | |
31 'absl-py', | |
32 'biopython', | |
33 'chex', | |
34 'dm-haiku', | |
35 'dm-tree', | |
36 'docker', | |
37 'immutabledict', | |
38 'jax', | |
39 'ml-collections', | |
40 'numpy', | |
41 'pandas', | |
42 'scipy', | |
43 'tensorflow-cpu', | |
44 ], | |
45 tests_require=['mock'], | |
46 classifiers=[ | |
47 'Development Status :: 5 - Production/Stable', | |
48 'Intended Audience :: Science/Research', | |
49 'License :: OSI Approved :: Apache Software License', | |
50 'Operating System :: POSIX :: Linux', | |
51 'Programming Language :: Python :: 3.6', | |
52 'Programming Language :: Python :: 3.7', | |
53 'Programming Language :: Python :: 3.8', | |
54 'Programming Language :: Python :: 3.9', | |
55 'Programming Language :: Python :: 3.10', | |
56 'Topic :: Scientific/Engineering :: Artificial Intelligence', | |
57 ], | |
58 ) |