-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.21 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
[tool.poetry]
name = "renv"
version = "0.3.1"
license = "MIT"
description = """The renv package is a CLI tool for creating environments for the R statistical programming language. It takes advantage of the python venv module and its modular EnvBuilder class."""
authors = ["Rob Gilmore <[email protected]>", "Santina Lin <[email protected]>", "Shaurita Hutchins <[email protected]>"]
readme = "README.md"
repository = "https://github.com/datasnakes/renv"
keywords = ["R", "virtual", "environment", "reproducible", "statistics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Programming Language :: Other",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Topic :: System :: Filesystems"
]
[tool.poetry.dependencies]
python = ">=3.4"
click = "^7.0"
pyyaml = "^3.12"
cookiecutter = "^1.6"
[tool.poetry.dev-dependencies]
pytest = "^3.5"
[tool.poetry.scripts]
renv = 'renv.renv:renv'