[04057e]: / setup.py

Download this file

27 lines (23 with data), 706 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2021/8/9 10:36
# @Author : Li Xiao
# @File : setup.py
#from setuptools import setup
#from setuptools import find_packages
# DO NOT USE THIS CODE. IT HAS NOT BEEN IMPLEMENTED.
'''
setup(
name = 'MoGCN',
version = '0.1',
description = 'Multi-omics integration method using GCN and AE in Pytorch.',
author = 'Li Xiao',
author_email = 'lixiaoBioinfo@163.com',
url = 'https://github.com/Lifoof',
download_url = 'https://github.com/Lifoof',
license = 'MIT',
install_requires = ['numpy', 'pandas', 'scipy', 'torch'],
packages = find_packages(),
python_requires = '>=3.6'
)
'''