-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
51 lines (41 loc) · 890 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[metadata]
name = igia
summary = Integrative Gene Isoform Assembler
author = Dehe Wang, Yu Zhou
author-email = [email protected], [email protected]
license = MIT
description-file = README.rst
classifier =
Development Status :: 4 - Beta
Programming Language :: Python
[entry_points]
# Add here console scripts like:
console_scripts =
igia = igia.skeleton:run
igiampi = igia.mpi4igia:run
igia_debug = igia.debug_igia:run
[files]
packages =
igia
data_files =
share/igia_docs = docs/*
[extras]
[test]
# py.test options when running `python setup.py test`
addopts = tests
[tool:pytest]
addopts =
--cov igia --cov-report term-missing
--verbose
[aliases]
docs = build_sphinx
[bdist_wheel]
universal = 1
[build_sphinx]
source_dir = docs
build_dir = docs/_build
[pbr]
autodoc_tree_index_modules = True
[devpi:upload]
no-vcs = 1
formats = bdist_wheel