|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=61.0"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | + |
| 6 | +[project] |
| 7 | +name = "xpore" |
| 8 | +authors = [{name = "Ploy N. Pratanwanich", email = "naruemon.p@chula.ac.th"}] |
| 9 | +maintainers = [ |
| 10 | + {name = "Ploy N. Pratanwanich", email = "naruemon.p@chula.ac.th"}, |
| 11 | +] |
| 12 | +requires-python = ">=3.8" |
| 13 | +description = "xpore is a python package for Nanopore data analysis of differential RNA modifications." |
| 14 | +dependencies = [ |
| 15 | + "numpy>=1.18.0", |
| 16 | + "pandas>=0.25.3", |
| 17 | + "scipy>=1.4.1", |
| 18 | + "PyYAML", |
| 19 | + "h5py>=2.10.0", |
| 20 | + "pyensembl>=1.8.5", |
| 21 | + "ujson>=4.0.1" |
| 22 | +] |
| 23 | +readme = "README.md" |
| 24 | +license = {text = "MIT"} |
| 25 | +classifiers = [ |
| 26 | + # Trove classifiers |
| 27 | + # (https://pypi.python.org/pypi?%3Aaction=list_classifiers) |
| 28 | + "Development Status :: 1 - Planning", |
| 29 | + "License :: OSI Approved :: MIT License", |
| 30 | + "Programming Language :: Python", |
| 31 | + "Programming Language :: Python :: 3.8", |
| 32 | + "Topic :: Software Development :: Libraries", |
| 33 | + "Topic :: Scientific/Engineering :: Bio-Informatics", |
| 34 | + "Intended Audience :: Science/Research", |
| 35 | +] |
| 36 | +dynamic = ["version"] |
| 37 | + |
| 38 | +[project.optional-dependencies] |
| 39 | +test = ["pytest"] |
| 40 | +docs = ["sphinx", "sphinx_rtd_theme"] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +homepage = "https://github.com/GoekeLab/xpore" |
| 44 | + |
| 45 | +[project.scripts] |
| 46 | +xpore = "xpore.scripts.xpore:main" |
| 47 | + |
| 48 | +[tool.setuptools] |
| 49 | +include-package-data = true # set explicitly in case it changes in the future |
| 50 | + |
| 51 | +[tool.setuptools.packages.find] |
| 52 | +include = ["xpore*"] |
| 53 | + |
| 54 | +[tool.setuptools.dynamic] |
| 55 | +version = {attr = "xpore.__version__"} |
0 commit comments