-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.38 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "snpraefentia"
version = "2.0.0"
description = "SNPraefentia: SNP Prioritization Tool"
authors = [
{name = "Nadeem Khan", email = "nadeemkhanf577977@gmail.com"},
{name = "Muhammad Muneeb Nasir", email = "talk2muneeb.ai@gmail.com"}
]
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pandas>=1.0.0",
"numpy>=1.18.0",
"requests>=2.22.0",
"ete3>=3.1.1",
"openpyxl>=3.1.5",
"matplotlib>=3.0.0",
"seaborn>=0.10.0",
"adjustText>=0.7.3",
"rich>=13.0.0",
]
[project.urls]
Homepage = "https://github.com/muneebdev7/SNPraefentia/"
Repository = "https://github.com/muneebdev7/SNPraefentia/"
Issues = "https://github.com/muneebdev7/SNPraefentia/issues"
[project.scripts]
snpraefentia = "snpraefentia.cli:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["snpraefentia*"]
exclude = ["tests*"]