-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (33 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "dnastore"
version = "0.1.0"
description = "A programmable storage abstraction over DNA: store(), retrieve(), delete(), update() -- with a simulator you can run today and a pluggable seam for real synthesis/sequencing hardware."
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [{ name = "Prashant Upadhyay", email = "prashantupadhyay0@gmail.com" }]
requires-python = ">=3.10"
keywords = ["dna-storage", "bioinformatics", "storage", "erasure-coding", "fountain-code", "reed-solomon"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: System :: Archiving",
]
dependencies = []
[project.optional-dependencies]
vfs = ["fusepy>=3.0"]
bio = ["biopython>=1.80"]
dev = ["pytest>=7.0"]
[project.urls]
Homepage = "https://github.com/Mr-PU/dnastore"
Repository = "https://github.com/Mr-PU/dnastore"
[tool.hatch.build.targets.wheel]
packages = ["dnastore"]
[tool.pytest.ini_options]
testpaths = ["tests"]