-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (33 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "gene_fetchr"
version = "v1.0.0-beta"
authors = [
{ name="Josue Figueroa", email="[email protected]" },
]
description = "Search, retrieve, and scrape biological data from annotated genomes or public databases."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities"
]
dependencies = [
"biopython (>1.79)"
]
keywords = [
'bioinformatics', 'compulational biology', 'synthetic biology', 'biology',
'genetics', 'genomics', 'DIYbio', 'sybio'
]
[project.urls]
"Homepage" = "https://github.com/PoorRican/fetchr"
"Bug Tracker" = "https://github.com/PoorRican/fetchr/issues"