forked from biothings/biothings_client.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (68 loc) · 2.33 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
[build-system]
requires = ["setuptools>=67.4.0", "requests>=2.3.0"]
build-backend = "setuptools.build_meta"
[project]
name="biothings_client"
authors = [
{name = "Cyrus Afrasiabi"},
{name = "Xinghua Zhou"},
{name = "Everaldo Rodolpho"},
{name = "Chunlei Wu", email = "[email protected]"},
]
requires-python = ">=2.7"
description = "Python Client for BioThings API services."
readme = "README.rst"
license = { text = "BSD-3-Clause" }
keywords = ["biology", "variant", "gene", "taxon", "species", "drug", "annotation", "web", "service", "client", "api", "myvariant", "mygene"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
dependencies = [
"requests>=2.3.0",
]
[project.optional-dependencies]
dataframe = ["pandas>=0.18.0"]
caching = ["requests_cache>=0.4.13"]
jsonld = ["PyLD>=0.7.2"]
[project.urls]
homepage = "https://github.com/biothings/biothings_client.py"
repository = "https://github.com/biothings/biothings_client.py"
documentation = "https://biothings-clientpy.readthedocs.io"
[tool.setuptools]
zip-safe = true
# packages = ["biothings_client"]
[tool.setuptools.dynamic]
version = {attr = "biothings_client.__version__"}
[tool.distutils.bdist_wheel]
# no need to set it after python 2.7 support is dropped
universal = true
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
[tool.isort]
profile = "black"
combine_as_imports = true
line_length = 120
src_paths = ["."]