-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (38 loc) · 1.24 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
# Long description from README file
with open("README.md", "r") as fh:
long_description = fh.read()
# Collect info in a dictionary for setup.py
setup(
name="meth5",
description="HDF5 based file format for storage, retrieval, and analysis of modification predictions from Nanopore",
version="1.2.0",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/snajder-r/meth5format",
author="Rene Snajder",
author_email="[email protected]",
license="MIT",
python_requires="==3.8.18",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
install_requires=[
"numpy==1.19.2",
"scipy==1.4.1",
"pandas==1.1.3",
"h5py==2.9.0",
"pysam==0.22.0",
"tqdm",
"setuptools"
],
packages=["meth5"],
package_dir={"meth5": "meth5"},
entry_points={"console_scripts": ["meth5=meth5.__main__:main"]},
)