-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 807 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 807 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
import os
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
req_path = os.path.join(os.path.dirname(__file__), "requirements.txt")
with open(req_path, encoding="utf-8") as f:
install_requires = f.read().strip().split("\n")
setup(
name="sfcv",
version="0.1.4",
description="Step Forward Cross Validation for Bioactivity Prediction",
author="Manas Mahale",
author_email="manas.m.mahale@gmail.com",
license="Apache 2.0",
packages=find_packages(),
package_data={"sfcv": ["logdmodel.txt"]},
install_requires=install_requires,
python_requires=">=3.11",
long_description=long_description,
long_description_content_type="text/markdown",
)