Diff of /setup.py [000000] .. [433586]

Switch to unified view

a b/setup.py
1
from setuptools import setup
2
3
with open("readme.md", "r") as fh:
4
    long_description = fh.read()
5
6
with open("maui/_version.py") as versionfile:
7
    exec(versionfile.read())
8
9
setup(
10
    name="maui-tools",
11
    version=__version__,
12
    description="Multi-omics Autoencoder Integration",
13
    author="Jonathan Ronen",
14
    license="GPLv3",
15
    author_email="yablee@gmail.com",
16
    url="https://github.com/BIMSBbioinfo/maui",
17
    packages=["maui"],
18
    long_description=long_description,
19
    long_description_content_type="text/markdown",
20
    install_requires=[
21
        "pytest",
22
        "numpy>=1.18.2",
23
        "pandas>=1.0.3",
24
        "scipy==1.2.1",
25
        "scikit-learn",
26
        "keras",
27
        "tensorflow<2.0",
28
        "pytest>=3.6.0",
29
    ],
30
)