-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
93 lines (85 loc) · 2.15 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
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
[project]
name = "sparc.client"
dynamic = ["version"]
description = "NIH SPARC Python Client"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["data science", "datasets"]
authors = [
{name = "Patryk Orzechowski", email = "[email protected]"}
]
maintainers = [
{name = "Patryk Orzechowski", email = "[email protected]"}
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"osparc~=0.5.0",
"pennsieve2 >= 0.1.2",
"cmlibs.zinc >= 4.0.0",
"cmlibs.utils >= 0.6.0",
"cmlibs.exporter >= 0.5.0",
"scaffoldmaker >= 0.10.0",
"mbfxml2ex >= 0.7.0",
]
[project.optional-dependencies]
test = [
"pytest ~= 7.2",
"pytest-cov",
"pytest-mock",
"flake8",
"black",
"responses",
]
[project.urls]
homepage = "https://sparc.science"
documentation = "https://docs.sparc.science/docs/sparc-python-client"
repository = "https://github.com/nih-sparc/sparc.client"
changelog = "https://github.com/nih-sparc/sparc.client/blob/main/CHANGELOG.md"
[tool.black]
line-length = 99
target-version = ['py310']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.venv
| _build
| buck-out
| build
| dist
| docs
)/
'''
[tool.setuptools.packages.find]
where = ["src", "config"]
[tool.setuptools.package-data]
"*" = ["*.ini", "*.txt"]
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8.0", "pennsieve2", "cmlibs.zinc", "cmlibs.utils", "scaffoldmaker", "mbfxml2ex"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/sparc/client/_version.py"
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]
pythonpath = [
".", "src",
]