Skip to content
Snippets Groups Projects
Commit ca375b50 authored by Veronique Legrand's avatar Veronique Legrand
Browse files

work in progress so that ptv can be installed via pip

parent 08f9cf8d
No related branches found
No related tags found
No related merge requests found
Pipeline #84818 passed
[metadata] [metadata]
name = phageTerm name = phageTermVirome
version = 4.1 version = 2.0
author = Marc Monot author = Marc Monot
author_email = marc.monot@pasteur.fr author_email = marc.monot@pasteur.fr
description = Using sequencing bias to identify phages terminii and phage genome packaging. description = Using sequencing bias to identify phages terminii and phage genome packaging.
long_description = file: README.txt long_description = file: README.txt
long_description_content_type = text long_description_content_type = text/plain
url = https://gitlab.pasteur.fr/vlegrand/ptv url = https://gitlab.pasteur.fr/vlegrand/ptv
project_urls = project_urls =
Bug Tracker = https://gitlab.pasteur.fr/vlegrand/ptv/-/issues Bug Tracker = https://gitlab.pasteur.fr/vlegrand/ptv/-/issues
classifiers = classifiers =
Programming Language :: Python :: 3 Programming Language :: Python :: 3
License :: OSI Approved :: GNU AFFERO GENERAL PUBLIC LICENSE, Version 3, 19 November 2007 License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
Operating System :: OS Independent Operating System :: OS Independent
Development Status :: 5 - Production/Stable
platforms=any
[options] [options]
package_dir = package_dir =
...@@ -21,4 +23,47 @@ packages = find: ...@@ -21,4 +23,47 @@ packages = find:
python_requires = >=3.6 python_requires = >=3.6
[options.packages.find] [options.packages.find]
where = . where = .
\ No newline at end of file
install_requires =
backports
backports.functools_lru_cache
backports_abc
cycler
libwebp-base
lz4-c
matplotlib
numpy
openssl
pandas
patsy
pillow
pip
pyparsing
python3.6
python-dateutil
python_abi
pytz
readline
reportlab
scikit-learn
scipy
setuptools
statsmodels
tk
[options.package_data]=
test-data=test-data/COS-3.500.fastq,test-data/COS-3.fasta,test-data/COS-3.fastq,test-data/COS-5.fasta
test-data/COS-5.fastq,test-data/DTR-long.fasta,test-data/DTR-long.fastq,test-data/DTR-short.fasta
test-data/DTR-short.fastq,test-data/Headful.fasta,test-data/Headful.fastq,test-data/Mu-like.fasta
test-data/Mu-like_R1.fastq,test-data/Mu-like_R2.fastq,test-data/Virome.fasta
test-data/Virome.fastq,test-data/chk_0_2_10_0.npz
data-virome=data-virome/Contigs_30min.fasta,data-virome/SRR4295172_2_div6.fastq,data-virome/SRR4295172_1_div6.fastq
unit-tests-data=unit-tests/data/G-janv_S2_R1_001.fastq.500,unit-tests/data/G-janv_S2_R2_001.fastq.500
unit-tests/data/chk_0_0_38_863.npz,unit-tests/data/coverage0_0.npz,unit-tests/data/seq1_2_3.fasta
non-regression-tests-data=non-regression-tests/data/HK97_assembly.fasta,non-regression-tests/data/Lambda_assembly.fasta
non-regression-tests/data/P1_assembly.fasta,non-regression-tests/data/R1_1M_READS_EACH_PHAGE(1).fastq.4
non-regression-tests/data/R1_1M_READS_EACH_PHAGE.fastq.20,non-regression-tests/data/R2_1M_READS_EACH_PHAGE(1).fastq.4
non-regression-tests/data/R2_1M_READS_EACH_PHAGE.fastq.20,non-regression-tests/data/Staph1N_assembly.fasta
non-regression-tests/data/T4_assembly.fasta,non-regression-tests/data/T7_assembly.fasta
non-regression-tests/data/virome_6seq.fa
setup.py 0 → 100644
"""A setuptools based setup module.
See:
https://packaging.python.org/guides/distributing-packages-using-setuptools/
https://github.com/pypa/sampleproject
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
# long_description = (here / "README.md").read_text(encoding="utf-8")
#long_description = (here / "README.txt").read_text(encoding="utf-8")
setup()
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment