Diff of /setup.py [000000] .. [4782c6]

Switch to unified view

a b/setup.py
1
#!/usr/bin/env python
2
# -*- coding: utf-8 -*-
3
# @Time    : 2021/8/9 10:36
4
# @Author  : Li Xiao
5
# @File    : setup.py
6
#from setuptools import setup
7
#from setuptools import find_packages
8
9
# DO NOT USE THIS CODE. IT HAS NOT BEEN IMPLEMENTED.
10
11
'''
12
setup(
13
    name = 'MoGCN',
14
    version = '0.1',
15
    description = 'Multi-omics integration method using GCN and AE in Pytorch.',
16
    author = 'Li Xiao',
17
    author_email = 'lixiaoBioinfo@163.com',
18
    url = 'https://github.com/Lifoof',
19
    download_url = 'https://github.com/Lifoof',
20
    license = 'MIT',
21
    install_requires = ['numpy', 'pandas', 'scipy', 'torch'],
22
    packages = find_packages(),
23
24
    python_requires = '>=3.6'
25
)
26
'''