-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (26 loc) · 928 Bytes
/
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
import os
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
install_requires = f.read().splitlines()
version = "1.0.0"
with open(os.path.join("de", "version.py"), "w") as f:
f.writelines([
'"""This file is auto-generated by setup.py, please do not alter."""\n',
f'__version__ = "{version}"\n',
"",
])
setup(
name="de",
version=version,
description="Protein design by Directed Evolution guided by Large Language Models.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/HySonLab/Directed_Evolution",
packages=find_packages(),
install_requires=install_requires,
python_requires=">=3.10",
license="GNU",
keywords=["directed evolution", "protein engineering", "large language model"]
)