-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
35 lines (33 loc) · 1.08 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 = "rinstall"
version = "0.2.3"
license = "MIT"
description = "A configurable installer CLI for installing R from source (sudo and non-sudo)."
authors = ["Rob Gilmore <robgilmore127@gmail.com>", "Shaurita Hutchins"," Roshan Pawar", "Cedric Wang"]
readme = 'README.md'
repository = "https://github.com/datasnakes/rinse"
homepage = "https://github.com/datasnakes/rinse"
keywords = ['r', 'installation']
packages = [
{ include = "rinse", from = "." },
]
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.5"
click = "^7.0"
cookiecutter = "^1.6"
[tool.poetry.scripts]
rinse = 'rinse.rinse:rinse'