2021-03-15 10:40:52 +00:00
|
|
|
use crate::config::{ModuleConfig, VecOr};
|
2019-10-19 01:51:38 +00:00
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
use serde::Serialize;
|
2019-10-19 01:51:38 +00:00
|
|
|
use starship_module_config_derive::ModuleConfig;
|
|
|
|
|
2021-03-31 15:31:55 +00:00
|
|
|
#[derive(Clone, ModuleConfig, Serialize)]
|
2019-10-19 01:51:38 +00:00
|
|
|
pub struct PythonConfig<'a> {
|
|
|
|
pub pyenv_version_name: bool,
|
2020-09-21 15:48:26 +00:00
|
|
|
pub pyenv_prefix: &'a str,
|
2020-11-30 19:14:18 +00:00
|
|
|
pub python_binary: VecOr<&'a str>,
|
2020-07-07 22:45:32 +00:00
|
|
|
pub format: &'a str,
|
2021-04-08 22:37:54 +00:00
|
|
|
pub version_format: &'a str,
|
2020-07-07 22:45:32 +00:00
|
|
|
pub style: &'a str,
|
|
|
|
pub symbol: &'a str,
|
2019-10-19 01:51:38 +00:00
|
|
|
pub disabled: bool,
|
2021-02-07 21:18:52 +00:00
|
|
|
pub detect_extensions: Vec<&'a str>,
|
|
|
|
pub detect_files: Vec<&'a str>,
|
|
|
|
pub detect_folders: Vec<&'a str>,
|
2019-10-19 01:51:38 +00:00
|
|
|
}
|
|
|
|
|
2021-03-15 10:40:52 +00:00
|
|
|
impl<'a> Default for PythonConfig<'a> {
|
|
|
|
fn default() -> Self {
|
2019-10-19 01:51:38 +00:00
|
|
|
PythonConfig {
|
|
|
|
pyenv_version_name: false,
|
2020-09-21 15:48:26 +00:00
|
|
|
pyenv_prefix: "pyenv ",
|
2020-11-30 19:14:18 +00:00
|
|
|
python_binary: VecOr(vec!["python", "python3", "python2"]),
|
2021-03-24 15:41:08 +00:00
|
|
|
format: "via [${symbol}${pyenv_prefix}(${version} )(\\($virtualenv\\) )]($style)",
|
2021-04-08 22:37:54 +00:00
|
|
|
version_format: "v${raw}",
|
2020-07-07 22:45:32 +00:00
|
|
|
style: "yellow bold",
|
|
|
|
symbol: "🐍 ",
|
2019-10-19 01:51:38 +00:00
|
|
|
disabled: false,
|
2021-02-07 21:18:52 +00:00
|
|
|
detect_extensions: vec!["py"],
|
|
|
|
detect_files: vec![
|
|
|
|
"requirements.txt",
|
|
|
|
".python-version",
|
|
|
|
"pyproject.toml",
|
|
|
|
"Pipfile",
|
|
|
|
"tox.ini",
|
|
|
|
"setup.py",
|
|
|
|
"__init__.py",
|
|
|
|
],
|
|
|
|
detect_folders: vec![],
|
2019-10-19 01:51:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|