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
|
"""Setup for the xpore package."""
from setuptools import setup,find_packages
__pkg_name__ = 'xpore'
with open('README.md') as f:
README = f.read()
setup(
author="Ploy N. Pratanwanich",
maintainer_email="naruemon.p@chula.ac.th",
name=__pkg_name__,
license="MIT",
description='xpore is a python package for Nanopore data analysis of differential RNA modifications.',
version='v2.1',
long_description=README,
long_description_content_type='text/markdown',
url='https://github.com/GoekeLab/xpore',
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy>=1.18.0',
'pandas>=0.25.3',
'scipy>=1.4.1',
'PyYAML',
'h5py>=2.10.0',
'pyensembl>=1.8.5',
'ujson>=4.0.1'
],
python_requires=">=3.8",
entry_points={'console_scripts': ["xpore={}.scripts.xpore:main".format(__pkg_name__)]},
classifiers=[
# Trove classifiers
# (https://pypi.python.org/pypi?%3Aaction=list_classifiers)
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
],
)
|