-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·40 lines (37 loc) · 1.16 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·40 lines (37 loc) · 1.16 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
37
38
39
40
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='methylartist',
version='1.5.4',
author='Adam Ewing',
author_email='adam.ewing@gmail.com',
description=("Tools for parsing and plotting nanopore methylation data"),
license='MIT',
url='https://github.com/adamewing/methylartist',
download_url='https://github.com/adamewing/methylartist/archive/refs/tags/1.5.4.tar.gz',
scripts=['methylartist'],
packages=find_packages(),
install_requires = [
'cython',
'pysam>=0.19.0',
'numpy',
'scipy',
'pandas',
'matplotlib',
'seaborn',
'bx-python',
'scikit-learn',
'tqdm',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)