forked from google-deepmind/alphafold
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.cfg
37 lines (34 loc) · 1.18 KB
/
setup.cfg
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
[metadata]
name = alphafold
version = attr: alphafold.version.__version__
description = An implementation of the inference pipeline of AlphaFold v2.0. This is a completely new model that was entered as AlphaFold2 in CASP14 and published in Nature.
author = DeepMind
author_email = [email protected]
license = Apache License, Version 2.0
url = https://github.com/seoklab/alphafold
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = find:
include_package_data = True
tests_require =
matplotlib
mock
[options.entry_points]
console_scripts =
af-memfraction = alphafold.utils:memfraction
[flake8]
ignore = E123,E126,E266,E4,E74,F403,F405,W503
per-file-ignores =
alphafold/common/residue_constants.py: E241,E501
indent-size = 2
max-line-length = 80