Diff of /setup.cfg [000000] .. [548210]

Switch to unified view

a b/setup.cfg
1
[bumpversion]
2
current_version = 0.8.9
3
commit = True
4
tag = True
5
6
[metadata]
7
name = openomics
8
version = 0.8.9
9
author = Jonny Tran
10
description = OpenOmics provides a bioinformatics API and web-app platform integrate and visualize the multiomics and clinical data.
11
long_description = file: README.md
12
long_description_content_type = text/markdown
13
url = https://github.com/JonnyTran/OpenOmics
14
doc_url = https://openomics.readthedocs.io/en/latest/
15
keywords = sample, example, setuptools
16
license = MIT
17
classifiers =
18
    Development Status :: 3 - Alpha
19
    Intended Audience :: Developers
20
    License :: OSI Approved :: MIT License
21
    Operating System :: OS Independent
22
    Programming Language :: Python :: 3
23
    Programming Language :: Python :: 3.7
24
    Programming Language :: Python :: 3.8
25
    Programming Language :: Python :: 3.9
26
    Topic :: Software Development :: Libraries :: Python Modules
27
28
[options]
29
packages = openomics, openomics_web
30
package_dir =
31
    openomics = openomics
32
    openomics_web = openomics_web
33
test_suite = tests
34
python_requires = >=3.6, <4
35
setup_requires =
36
    pytest-runner
37
    twine
38
install_requires = file: requirements.txt
39
40
[options.extras_require]
41
test = file: requirements_dev.txt
42
43
[options.package_data]
44
sample =
45
    tests/data/*
46
47
[bumpversion:file:setup.py]
48
search = version='{current_version}'
49
replace = version='{new_version}'
50
51
[bumpversion:file:openomics/__init__.py]
52
search = __version__ = '{current_version}'
53
replace = __version__ = '{new_version}'
54
55
[bdist_wheel]
56
universal = 1
57
58
[flake8]
59
exclude = docs
60
per-file-ignores = openomics/imageomics.py:F821
61
62
[aliases]
63
test = pytest
64
65
[tool:pytest]
66
collect_ignore = ['setup.py']