forked from theislab/anndata2ri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (44 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
[build-system]
requires = ['flit_core >=2,<4', 'get_version']
build-backend = 'flit_core.buildapi'
[tool.flit.metadata]
module = 'anndata2ri'
author = 'Philipp A.'
author-email = '[email protected]'
description-file = 'README.rst'
classifiers = [
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: R',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
requires-python = '>= 3.6'
requires = [
'get_version',
'rpy2 >= 3.4',
'tzlocal', # for pandas2ri
'anndata',
]
[tool.flit.metadata.requires-extra]
test = [
'pytest',
'pytest-faulthandler',
'pygments',
'scanpy',
]
doc = [
'sphinx>=3.0',
'sphinx-autodoc-typehints',
'scanpydoc',
'sphinx-rtd-theme>=0.5', # Already a dep but 0.5 is prettier
'lxml', # For scraping the R link info
]
[tool.flit.metadata.urls]
'Documentation' = 'https://icb-anndata2ri.readthedocs-hosted.com/'
'Source Code' = 'https://github.com/theislab/anndata2ri'
'Issue Tracker' = 'https://github.com/theislab/anndata2ri/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc'
[tool.black]
line-length = 120