-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (46 loc) · 1.48 KB
/
pyproject.toml
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
[tool.black]
max-line-length = 88
target-version = ["py310"]
workers = 1
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
source = ["cloud_registry"]
omit = ["cloud_registry/app.py"]
[tool.flake8]
exclude = [".git", ".eggs", "build", "venv", "env"]
max-line-length = 88
extend-ignore = "E203"
[project]
name ="cloud-registry"
version="0.2.0"
authors = [{name = "ELIXIR Cloud & AAI"}, {email = "[email protected]"}]
keywords = [
"ga4gh", "service", "registry", "elixir", "cloud", "rest", "restful",
"api", "app", "server", "openapi", "swagger", "mongodb", "python", "flask"
]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
]
description = "GA4GH Service Registry API implementation for the ELIXIR Cloud"
dynamic = ["dependencies"]
[project.license]
text = "Apache License 2.0"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
homepage = "https://github.com/elixir-cloud-aai/cloud-registry.git"
[tool.setuptools.dynamic.version]
file = ["cloud_registry/version"]
[tool.setuptools.packages.find]
exclude = ["deployment", "docs"]
[tool.setuptools.dynamic.dependencies]
file = ["requirements.txt"]
[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ["requirements_dev.txt"] }