Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .gitattributes

This file was deleted.

16 changes: 16 additions & 0 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.10"

sphinx:
configuration: docs/source/conf.py

python:
install:
- method: pip
path: .
extra_requirements:
- docs
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ Installation from our GitHub repository

git clone https://github.com/GoekeLab/xpore.git
cd xpore
python setup.py install
pip install .

55 changes: 55 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"


[project]
name = "xpore"
authors = [{name = "Ploy N. Pratanwanich", email = "naruemon.p@chula.ac.th"}]
maintainers = [
{name = "Ploy N. Pratanwanich", email = "naruemon.p@chula.ac.th"},
]
requires-python = ">=3.8"
description = "xpore is a python package for Nanopore data analysis of differential RNA modifications."
dependencies = [
"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"
]
readme = "README.md"
license = {text = "MIT"}
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",
]
dynamic = ["version"]

[project.optional-dependencies]
test = ["pytest"]
docs = ["sphinx", "sphinx_rtd_theme"]

[project.urls]
homepage = "https://github.com/GoekeLab/xpore"

[project.scripts]
xpore = "xpore.scripts.xpore:main"

[tool.setuptools]
include-package-data = true # set explicitly in case it changes in the future

[tool.setuptools.packages.find]
include = ["xpore*"]

[tool.setuptools.dynamic]
version = {attr = "xpore.__version__"}
46 changes: 0 additions & 46 deletions setup.py

This file was deleted.

Loading