-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.cfg
More file actions
97 lines (88 loc) · 2.26 KB
/
setup.cfg
File metadata and controls
97 lines (88 loc) · 2.26 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# =============================================================================
# setup.cfg
# =============================================================================
[metadata]
name = crisprhawk
version = 0.2.0
author = Manuel Tognon
author_email = manu.tognon@gmail.com
description = CRISPR-HAWK: Haplotype and vAriant-aWare guide design toolKit
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pinellolab/CRISPR-HAWK
project_urls =
Bug Tracker = https://github.com/pinellolab/CRISPR-HAWK/issues
Documentation = https://github.com/pinellolab/CRISPR-HAWK
Source = https://github.com/pinellolab/CRISPR-HAWK
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Bio-Informatics
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires = file: requirements.txt
include_package_data = True
zip_safe = False
[options.packages.find]
where = src
[options.package_data]
crisprhawk =
scripts/*
crisprhawk.scores.azimuth =
*.zip
data/*
tests/*
LICENSE.txt
*.csv
crisprhawk.scores.cfdscore =
*.zip
crisprhawk.scores.deepCpf1 =
*.zip
crisprhawk.scores.elevation =
*.zip
crisprhawk.scores.plm_crispr =
*.zip
crisprhawk.config =
*.json
[options.entry_points]
console_scripts =
crisprhawk = crisprhawk.__main__:main
[options.extras_require]
dev =
pytest
black
flake8
mypy
docs =
sphinx
sphinx-rtd-theme
# =============================================================================
# Tool configurations
# =============================================================================
[tool:pytest]
addopts = -ra --strict-markers
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
[flake8]
max-line-length = 88
extend-ignore = E203, W503
exclude =
.git,
__pycache__,
build,
dist,
*.egg-info
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True