-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
66 lines (56 loc) · 1.62 KB
/
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[bumpversion]
current_version = 0.8.9
commit = True
tag = True
[metadata]
name = openomics
version = 0.8.9
author = Jonny Tran
description = OpenOmics provides a bioinformatics API and web-app platform integrate and visualize the multiomics and clinical data.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/JonnyTran/OpenOmics
doc_url = https://openomics.readthedocs.io/en/latest/
keywords = sample, example, setuptools
license = MIT
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = openomics, openomics_web
package_dir =
openomics = openomics
openomics_web = openomics_web
test_suite = tests
python_requires = >=3.6, <4
setup_requires =
pytest-runner
twine
install_requires = file: requirements.txt
[options.extras_require]
test = file: requirements_dev.txt
[options.package_data]
sample =
tests/data/*
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:openomics/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[bdist_wheel]
universal = 1
[flake8]
exclude = docs
per-file-ignores = openomics/imageomics.py:F821
[aliases]
test = pytest
[tool:pytest]
collect_ignore = ['setup.py']