#!/usr/bin/env python3
# Core Library modules
import sys
from pathlib import Path
from typing import Optional
# Local modules
from . import project_count
[docs]
class Config:
"""Configuration class"""
pypirc: Optional[Path] = None
original_project_name: str = "project_name"
no_cleanup: bool = False
project_count: int = project_count
package_version: str = "0.0.0"
description: str = "placeholder"
pypi_search_url: str = "https://pypi.org/search/"
pypi_project_url: str = "https://pypi.org/project/"
pypi_json_url: str = "https://pypi.org/pypi/"
pypi_simple_index_url: str = "https://pypi.org/simple/"
github_api_url: str = "https://api.github.com/repos/"
github_base_url: str = "https://github.com/"
idlemode: int = 1 if "idlelib.run" in sys.modules else 0
config = Config()