-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (62 loc) · 2.07 KB
/
setup.py
File metadata and controls
64 lines (62 loc) · 2.07 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_packages
from pathlib import Path
long_description = (Path(__file__).parent / "README.md").read_text(encoding="utf-8")
setup(
name="openage",
version="0.1.0",
author="Nikhil Yadala",
author_email="nikhil@healome.one",
description="Open-source blood-based biological age estimation from standard clinical biomarkers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Healome/openage",
project_urls={
"Source": "https://github.com/Healome/openage",
"Bug Tracker": "https://github.com/Healome/openage/issues",
"Documentation": "https://github.com/Healome/openage#readme",
"Company": "https://healome.ai",
},
packages=find_packages(),
include_package_data=True,
python_requires=">=3.8",
install_requires=[
"numpy>=1.21,<2",
"pandas>=1.3",
"scikit-learn>=1.0,<1.1",
"joblib>=1.0",
"matplotlib>=3.4",
"huggingface_hub>=0.20",
],
extras_require={
"survival": [
"lifelines>=0.27",
],
"neural": [
"torch>=1.9",
],
"hub": [
"huggingface_hub>=0.20",
],
"dev": [
"pytest>=7.0",
"pytest-cov",
"black",
"ruff",
"lifelines>=0.27",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
],
keywords="biological-age aging biomarkers blood-panel NHANES longevity",
)