-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 749 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 749 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
27
28
29
30
from setuptools import setup
with open("readme.md", "r") as fh:
long_description = fh.read()
with open("maui/_version.py") as versionfile:
exec(versionfile.read())
setup(
name="maui-tools",
version=__version__,
description="Multi-omics Autoencoder Integration",
author="Jonathan Ronen",
license="GPLv3",
author_email="yablee@gmail.com",
url="https://github.com/BIMSBbioinfo/maui",
packages=["maui"],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"pytest",
"numpy>=1.18.2",
"pandas>=1.0.3",
"scipy==1.2.1",
"scikit-learn",
"keras",
"tensorflow<2.0",
"pytest>=3.6.0",
],
)