File size: 1,617 Bytes
a8f5e53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
"""
ExtenDRA: Extended Longevity Discovery & Response Architecture
=====================================================

Causal deep learning-powered cross-layer multi-omics harmonization and 
integration framework following the central dogma of biology for deciphering 
molecular interplays underlying exceptional longevity.

Installation
------------
    pip install -e .

Usage
-----
    python -m extendra.pipeline --mode quick_test
    python -m extendra.pipeline --mode train --data synthetic --epochs 50
"""

from setuptools import setup, find_packages

setup(
    name="extendra-longevity",
    version="0.1.0",
    description="Extended Longevity Discovery and Response Architecture for Exceptional Longevity",
    author="ExtenDRA Team",
    packages=find_packages(),
    python_requires=">=3.10",
    install_requires=[
        "torch>=2.0.0",
        "transformers>=4.40.0",
        "datasets>=2.14.0",
        "trackio>=0.1.0",
        "numpy>=1.24.0",
        "pandas>=2.0.0",
        "scikit-learn>=1.3.0",
    ],
    extras_require={
        "dev": [
            "pytest>=7.0",
            "black>=23.0",
            "isort>=5.12",
        ],
        "huggingface": [
            "huggingface_hub>=0.20.0",
            "peft>=0.7.0",
        ],
    },
    classifiers=[
        "Development Status :: 3 - Alpha",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
        "Topic :: Scientific/Engineering :: Bio-Informatics",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.10",
    ],
)