-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.36 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.36 KB
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
import os
from setuptools import setup, find_packages
setup(name='MRCNN',
version='0.0.1',
description='Regression of CpG methylation by Deep Learning Method ',
long_description=read('README.md'),
author='QiTian',
author_email='tqglowing@gmail.com',
license="MIT",
url='https://../../',
download_url='https://../..',
packages=find_packages(),
install_requires=['tensorflow-gpu==1.2.0',
'scikit-learn',
'keras'
'scipy',
'numpy',
'pandas',
'matplotlib',
'seaborn'],
keywords=['Deep learning',
'Convolutional neural networks',
'DNA methylation',
'Single CpG site'],
classifiers=['Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Bioinformatics',
]
)