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
|
##########################
# Setup.py Configuration #
##########################
[metadata]
name = bel_resources
version = 0.0.3
description = Utilities for BEL resource files.
long_description = file: README.rst
license = MIT
license_file = LICENSE
url = https://github.com/cthoyt/bel-resources
download_url = https://github.com/cthoyt/bel-resources/releases
project_urls =
Bug Tracker = https://github.com/cthoyt/bel-resources/issues
Source Code = https://github.com/cthoyt/bel-resources
author = Charles Tapley Hoyt
author_email = cthoyt@gmail.com
maintainer = Charles Tapley Hoyt
maintainer_email = cthoyt@gmail.com
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
keywords =
Biological Expression Language
BEL
Semantic Web
Networks Biology
Systems Biology
Ontologies
[options]
install_requires =
requests
requests_file
multisplitby
python_requires = >=3.5
tests_require =
tox
packages = find:
package_dir =
= src
zip_safe = true
[options.packages.find]
where = src
[options.extras_require]
obo =
obonet
[options.entry_points]
console_scripts =
bel-resources = bel_resources.cli:main
######################
# Doc8 Configuration #
# (doc8.ini) #
######################
[doc8]
max-line-length = 120
##########################
# Coverage Configuration #
# (.coveragerc) #
##########################
[coverage:run]
branch = True
source = bel-resources
[coverage:paths]
source =
src/bel_resources
.tox/*/lib/python*/site-packages/bel_resources
[coverage:report]
show_missing = True
|