-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 778 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 778 Bytes
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="CPCProt",
version="0.0.1",
author="Amy Lu",
author_email="amyxlu@cs.toronto.edu",
description="Parameter-efficient pretrained model for obtaining protein embeddings.",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Linux",
],
python_requires=">=3.6",
install_requires=[
"numpy>=1.19,<2.0",
"torch>=1.0,<2.0",
"lmdb>=1.0,<2.0",
# "tape-proteins>=0.4,<=1.0",
"tape-proteins @ git+https://github.com/konstin/tape@patch-1",
"scipy>=1.5,<2.0",
],
)