a b/setup.py
1
"""ai_genomics."""
2
from pathlib import Path
3
from setuptools import find_packages
4
from setuptools import setup
5
6
7
def read_lines(path):
8
    """Read lines of `path`."""
9
    with open(path) as f:
10
        return f.read().splitlines()
11
12
13
BASE_DIR = Path(__file__).parent
14
15
16
setup(
17
    name="ai_genomics",
18
    long_description=open(BASE_DIR / "README.md").read(),
19
    install_requires=read_lines(BASE_DIR / "requirements.txt"),
20
    extras_require={"dev": read_lines(BASE_DIR / "requirements_dev.txt")},
21
    packages=find_packages(exclude=["docs"]),
22
    version="0.1.0",
23
    description="A short description of the project.",
24
    author="Nesta",
25
    license="MIT",
26
)