-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.18 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
from setuptools import setup, find_packages
setup(
name='protein-design-tools',
version='0.1.28',
description='A toolkit for protein structure analysis and design.',
author='Andrew Schaub',
author_email='[email protected]',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/drewschaub/protein-design-tools',
license=' MIT License',
packages=find_packages(include=['protein_design_tools', 'protein_design_tools.*']),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
package_dir={'protein_design_tools': 'protein_design_tools'},
python_requires = ">=3.6",
install_requires=[
'numpy',
'h5py',
'sphinx_rtd_theme',
# Add other dependencies here
],
extras_require={
'jax_cpu': ['jax[cpu]',],
'jax_cuda12': ['jax[cuda12]',],
'jax_tpu': ['jax[tpu]',],
},
)