-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
28 lines (25 loc) · 939 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from pathlib import Path
# Read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf-8')
REQUIREMENTS = [i.strip() for i in open("requirements.txt").readlines()]
setup(
name="antifold",
version="0.3.1",
packages=find_packages(),
description="Inverse folding of antibodies",
url="https://github.com/oxpig/AntiFold/",
author="Magnus Haraldson Høie & Alissa Hummer",
author_email="[email protected]",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=REQUIREMENTS,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
],
)