-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (37 loc) · 1.03 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["biovars"]
namespaces = false
[project]
name = "biovars"
version = "0.2.0"
description = "Tool for joining all the bioinfo-hcpa's variant information retrieval APIs."
readme = "README.md"
authors = [
{name = "Felipe Colombelli"},
{name = "Paola Carneiro", email = "[email protected]"}
]
license = {file = "LICENSE"}
keywords = ["gnomad", "api", "variants", "genes"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.8"
]
dependencies = [
"pandas>=1.0.5",
"numpy==1.23.3",
"requests>=2.24.0",
"pynoma",
"pyabraom"
]
[project.urls]
Homepage = "https://github.com/bioinfo-hcpa/biovars"
[project.optional-dependencies]
plots = ["rpy2==3.5.12", "seaborn"]
[project.scripts]
biovars = "biovars.cli:main"