-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (25 loc) · 749 Bytes
/
setup.py
File metadata and controls
26 lines (25 loc) · 749 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
from setuptools import setup, find_packages
from pathlib import Path
setup(
name="evolocity",
version="1.1",
python_requires=">=3.6",
install_requires=[
l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()
],
packages=find_packages(),
author="Brian Hie",
author_email="brianhie@stanford.edu",
description="Evolutionary velocity with protein language models",
long_description=Path("docs/README.rst").read_text("utf-8"),
license="MIT",
url="https://github.com/brianhie/evolocity",
download_url="https://github.com/brianhie/evolocity",
keywords=[
"evolution",
"velocity",
"evolocity",
"protein",
"language model",
],
)