-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 879 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 879 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
28
29
30
31
32
33
34
35
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "fgread"
author = "FASTGenomics Team"
author-email = "contact@fastgenomics.org"
description-file = 'README.md'
home-page = 'https://github.com/FASTGenomics/fgread-py'
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = '~=3.6'
requires=[
"anndata ~= 0.6",
"get_version",
"tables ~= 3.6",
"loompy ~= 3.0",
"scanpy ~= 1.4",
"pandas >= 0.25"
]
[tool.flit.metadata.urls]
Documentation = "https://fgread-py.readthedocs.io/en/stable/"
[tool.flit.metadata.requires-extra]
test = [
"pytest >= 4"
]