File size: 1,752 Bytes
ccd282b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name="nb-transformer",
    version="1.0.0",
    author="Valentine Svensson",
    author_email="valentine.svensson@gmail.com",
    description="Fast Negative Binomial GLM parameter estimation using transformers - a DESeq2 replacement",
    long_description=long_description,
    long_description_content_type="text/markdown",
    url="https://huggingface.co/valsv/nb-transformer",
    packages=find_packages(),
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Science/Research",
        "Topic :: Scientific/Engineering :: Bio-Informatics",
        "Topic :: Scientific/Engineering :: Artificial Intelligence",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
        "Programming Language :: Python :: 3.8",
        "Programming Language :: Python :: 3.9",
        "Programming Language :: Python :: 3.10",
    ],
    python_requires=">=3.8",
    install_requires=[
        "torch>=1.10.0",
        "pytorch-lightning>=1.8.0",
        "numpy>=1.21.0",
        "scipy>=1.7.0",
        "tensorboard>=2.8.0",
    ],
    extras_require={
        "dev": [
            "pytest>=6.2.0",
            "flake8>=4.0.0",
            "black>=21.0.0",
            "mypy>=0.910",
        ],
        "analysis": [
            "pandas>=1.3.0",
            "pyarrow>=5.0.0",
            "matplotlib>=3.4.0",
            "scikit-learn>=1.0.0",
            "statsmodels>=0.13.0",
        ],
    },
    entry_points={
        "console_scripts": [
            "train-nb-transformer=nb_transformer.train:main",
        ],
    },
)