forked from instadeepai/InstaNovo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (25 loc) · 964 Bytes
/
setup.py
File metadata and controls
34 lines (25 loc) · 964 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
28
29
30
31
32
33
34
from __future__ import annotations
from codecs import open
from pathlib import Path
import setuptools
from setuptools import setup
__version__ = "0.1.6"
def read_requirements(file: str) -> list[str]:
"""Returns content of given requirements file."""
return [line for line in open(file) if not (line.startswith("#") or line.startswith("--"))]
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="instanovo",
version=__version__,
description="De novo sequencing with InstaNovo",
author="InstaDeep",
url="https://github.com/instadeepai/InstaNovo",
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=read_requirements("./requirements.txt"),
# extras_require={"dev": read_requirements("./requirements-dev.txt")},
include_package_data=True,
long_description=long_description,
long_description_content_type="text/markdown",
)