File: pyproject.toml

package info (click to toggle)
rpy2 3.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,412 kB
  • sloc: python: 18,448; ansic: 492; makefile: 197; sh: 166
file content (64 lines) | stat: -rw-r--r-- 1,830 bytes parent folder | download
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = [
    "setuptools >= 61",
    "wheel",
    "cffi>=1.15.0",
    "packaging;platform_system=='Windows'",
]
build-backend = "setuptools.build_meta"

[project]
name = "rpy2"
version = "3.6.4"
description = "Python interface to the R language (embedded R)"
readme = "README.md"
requires-python = ">=3.8"
license = "GPL-2.0-or-later"
license-files = ["LICENSE"]
authors = [{ name = "Laurent Gautier", email = "lgautier@gmail.com" }]
classifiers = [
    "Programming Language :: Python",
    "Programming Language :: Python :: 3",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Intended Audience :: Developers",
    "Intended Audience :: Science/Research",
]
dependencies = [
    "rpy2-rinterface>=3.6.3",
    "rpy2-robjects>=3.6.3",
    "packaging;platform_system=='Windows'",
    "backports.zoneinfo;python_version<'3.9'"
]

[project.optional-dependencies]
doc = ['pygraphviz',
       'sphinx']
test_minimal = ["pytest>=8", "coverage", "pytest-cov"]
test = ["rpy2-rinterface[test]",
        "rpy2-robjects[test]"]
numpy = ["rpy2-rinterface[numpy]",
         "rpy2-robjects[numpy]"]
pandas = ["rpy2-rinterface[numpy]",
          "rpy2-robjects[numpy]"]
types = ["mypy", "types-tzlocal"]
all = ["rpy2-rinterface[all]",
       "rpy2-robjects[all]"]

[project.urls]
Homepage = "https://rpy2.github.io"
Documentation = "https://rpy2.github.io/doc.html"
Source = "https://github.com/rpy2/rpy2"
Tracker = "https://github.com/rpy2/rpy2/issue"

[tool.setuptools.packages.find]
where = ["src"]
include = ["rpy2", "rpy2.*"]
namespaces = true

[tool.pytest.ini_options]
minversion = "6.0"