-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (24 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
27 lines (24 loc) · 816 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "hare-bio"
authors = [
{name="Olivia Smith", email="osmith@utexas.edu"},
]
description = "HARE: A Python pipeline to capture genomic feature enrichment from GWAS sumstats"
version = "1.2.0"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["bioinformatics", "genetics", "evolution", "enrichment", "GWAS"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.scripts]
hare = "hare:main"
[project.urls]
"Homepage" = "https://github.com/ossmith/HARE"
"Bug Tracker" = "https://github.com/ossmith/HARE/issues"