-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·109 lines (94 loc) · 4.46 KB
/
setup.py
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
'''
EpiClass
#########################\\>==+,,++=|\\################################
#######################\,......___,__.-.+\\############################
######################\+,__..___..._+=>>>==\\##########################
#####################\=,____,,++,,_...,=|\\<+>\########################
####################|=,,+++++,,,,+,,,,,,+=<\\\<\#######################
###################|=,,,,,,,,_____,,_,,,,,,>|\\=+<#####################
##################>|+,__...____......._,,,,+|\\|<\#####################
#################\=|+,_..__________....__,,+<\\\\\#####################
################\\>|+,__________.....______+<\\\\\#####################
###############<,_,\|+=====+,___,,,,,,____,<\\\\\\#####################
###############<+_+\|><\\\\\\\\\<\\\||\\||\\\\=,__\####################
###############\=,>\+,,++=<|\=<\+=<<===>\<+||+,..,>####################
################\++<=,,++++\=,_==,++++++=,,>++=__+\####################
#################\,__,,,++=,____,<>++++__,=+_++,+\#####################
##################\_.._..++,_.._,,=,...._,+_.__+#######################
###################\\+___,_________,...__,,_._|########################
#####################\,__,,,,,,,,,___.._,,=\|\#########################
######################|_____,,,_____..._,,<############################
#######################=_____________.___,|############################
########################=,,________,,____+\############################
########################\>,++,,,+,,,,___+\\<\##########################
########################\\>,,+,==___,,=\\\\\+>\\#######################
#####################\\\\\\|++,_,,_+>\\\\\\\>==,_,=|\\#################
################\\\<+<|\\\\\\\>+,++\#\\\\\\\|<<>++,,,,,,+=>|\\\########
##########\\<=+=|\<+<>\###\\\\\\\\\\\\\\\\\\\\|<>>>>>==+++++,++=<\#####
Optimizing and predicting performance of DNA methylation biomarkers using sequence methylation density information.
2019 Brendan F. Miller
bmille79 <at> jh <dot> edu
-----------
PUBLIC DOMAIN NOTICE
This software is "United States Government Work" under the terms of the United
States Copyright Act. It was written as part of the authors' official duties
for the United States Government and thus cannot be copyrighted. This software
is freely available to the public for use without a copyright
notice. Restrictions cannot be placed on its present or future use.
Although all reasonable efforts have been taken to ensure the accuracy and
reliability of the software and associated data, the National Human Genome
Research Institute (NHGRI), National Institutes of Health (NIH) and the
U.S. Government do not and cannot warrant the performance or results that may
be obtained by using this software or data. NHGRI, NIH and the U.S. Government
disclaim all warranties as to performance, merchantability or fitness for any
particular purpose.
Please cite the authors in any work or product based on this material.
-------
'''
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="EpiClass",
version="2.2.6",
author="Brendan F. Miller",
author_email="[email protected]",
description="Optimizing and predicting performance of DNA methylation biomarkers using sequence methylation density information.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/bmill3r/EpiClass",
download_url="https://github.com/bmill3r/EpiClass/dist/EpiClass-2.2.5.tar.gz",
packages=['epiclass'],
package_dir={'epiclass': 'epiclass'},
include_package_data=True,
license='Public Domain',
zip_safe=False,
install_requires=[
'numpy==1.19.*',
'pandas==0.25.*',
'scikit-learn==0.21.*',
'scipy==1.3.*',
'matplotlib==3.1.*',
'tables==3.6.*'],
entry_points={
'console_scripts': [
'epiclass = epiclass.__main__:main'
]
},
test_suite='nose.collector',
tests_require=[
'nose',
'pytest',
'pytest-cov',
'coverage'],
classifiers=[
'Programming Language :: Python :: 3 :: Only',
"Operating System :: OS Independent",
'Development Status :: 4 - Beta',
'License :: Public Domain',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Environment :: Console'
]
)