-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
54 lines (53 loc) · 1.85 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
# Lib
from setuptools import setup, find_packages
exec(open('methylprep/version.py').read())
setup(
name='methylprep',
version=__version__,
description='Python-based Illumina methylation array preprocessing software',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
project_urls = {
"Documentation": "https://life-epigenetics-methylprep.readthedocs-hosted.com/en/latest/",
"Source": "https://github.com/FOXOBioScience/methylprep/",
"Funding": "https://FOXOBioScience.com/"
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Framework :: Jupyter',
'Intended Audience :: Science/Research',
'Intended Audience :: Financial and Insurance Industry',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
],
keywords='methylation dna data processing epigenetics illumina',
url='https://github.com/FOXOBioScience/methylprep',
license='MIT',
author='Life Epigenetics',
author_email='info@FOXOBioScience.com',
packages=find_packages(),
include_package_data=True,
package_data={"":["*.txt.gz"]},
install_requires=[
'numpy',
'pandas',
'scipy',
'statsmodels',
'tqdm',
'bs4',
'lxml',
'requests',
],
setup_requires=['pytest-runner'],
tests_require=['pytest','pytest_mock','matplotlib'],
entry_points='''
[console_scripts]
methylprep-cli=methylprep.cli:app
''',
)