-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
34 lines (30 loc) · 918 Bytes
/
setup.cfg
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
[metadata]
name = pipeval
version = attr: pipeval.__version__
author = 'Yash Patel'
author_email = '[email protected]'
description = 'Python CLI tool to validate different file types and their contents in Nextflow scripts/pipelines'
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/uclahs-cds/public-tool-PipeVal
project_urls =
Bug Tracker = https://github.com/uclahs-cds/public-tool-PipeVal/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU General Public License v2.0 (GPL-2.0)
Operating System :: OS Independent
[options]
package_dir =
= .
packages = find:
python_requires = >=3.6
install_requires =
mock==4.0.2
pytest==7.2.2
pysam==0.22.1
python-magic==0.4.27
[options.packages.find]
where = .
[options.entry_points]
console_scripts =
pipeval = pipeval.__main__:main