-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.23 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.23 KB
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
"""Install script for setuptools."""
from setuptools import setup, find_packages
from profold2.model import kernel
setup(
name='ProFOLD2',
packages=find_packages(),
version='0.1.0',
license='MIT',
description='ProFOLD2 - A protein 3D structure prediction application',
author='Chungong Yu, Dongbo Bu',
author_email='chungongyu@gmail.com, dbu@gmail.com',
url='https://github.com/bigict/ProFOLD2',
keywords=[
'artificial intelligence', 'attention mechanism', 'protein folding'
],
install_requires=[
'biopython',
'einops>=0.3',
'openmm>=8.0.0',
'pdbfixer',
'tensorboard',
'torch>=2.3.1',
'tqdm'
],
test_suite='tests',
include_package_data=True,
package_data={
'profold2': ['model/kernel/csrc/*'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.11',
],
**kernel.setuptools(),
entry_points={
'console_scripts': [
'profold2 = profold2.command.main:main'
]
},
)