Repo reset for less crap
This commit is contained in:
parent
b585217242
commit
0626962785
18
.drone.yml
18
.drone.yml
@ -1,18 +0,0 @@
|
|||||||
---
|
|
||||||
matrix:
|
|
||||||
include:
|
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: py38
|
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: lint
|
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: sort
|
|
||||||
- IMAGE: 3.8-buster
|
|
||||||
TOXENV: format
|
|
||||||
|
|
||||||
pipeline:
|
|
||||||
build:
|
|
||||||
image: python:${IMAGE}
|
|
||||||
commands:
|
|
||||||
- pip install tox
|
|
||||||
- tox -e ${TOXENV}
|
|
@ -1,7 +1,5 @@
|
|||||||
# Magic App
|
# Magic App
|
||||||
|
|
||||||
[![Build Status](https://drone.autonomic.zone/api/badges/autonomic-cooperative/magic-app/status.svg)](https://drone.autonomic.zone/autonomic-cooperative/magic-app)
|
|
||||||
|
|
||||||
A swarm of dreams.
|
A swarm of dreams.
|
||||||
|
|
||||||
## Proof Of Concept
|
## Proof Of Concept
|
||||||
@ -20,5 +18,5 @@ A swarm of dreams.
|
|||||||
$ python3 -m venv .venv
|
$ python3 -m venv .venv
|
||||||
$ source .venv/bin/activate
|
$ source .venv/bin/activate
|
||||||
$ pip install -r requirements.txt
|
$ pip install -r requirements.txt
|
||||||
$ python magic_app/app.py
|
$ python one.py / two.py / three.py
|
||||||
```
|
```
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"gitea": "https://git.autonomic.zone/compose-stacks/gitea"
|
|
||||||
}
|
|
@ -1,3 +1,9 @@
|
|||||||
|
"""The all singing all dancing auto-generation from compose.yml attempt.
|
||||||
|
|
||||||
|
Largely unfinished, just a stab in the dark.
|
||||||
|
|
||||||
|
"""
|
||||||
|
|
||||||
from json import loads
|
from json import loads
|
||||||
from os.path import exists
|
from os.path import exists
|
||||||
from pathlib import Path
|
from pathlib import Path
|
@ -1,11 +0,0 @@
|
|||||||
[build-system]
|
|
||||||
requires = [
|
|
||||||
"setuptools",
|
|
||||||
"setuptools-scm",
|
|
||||||
"wheel",
|
|
||||||
]
|
|
||||||
build-backend = "setuptools.build_meta"
|
|
||||||
|
|
||||||
[tool.black]
|
|
||||||
line-length = 80
|
|
||||||
target-version = ["py38"]
|
|
16
setup.py
16
setup.py
@ -1,16 +0,0 @@
|
|||||||
from setuptools import find_packages, setup
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name="magic-app",
|
|
||||||
version="0.0.1a1",
|
|
||||||
url="https://git.autonomic.zone/autonomic-cooperative/magic-app",
|
|
||||||
author="Autonomic Cooperative",
|
|
||||||
author_email="helo@autonomic.zone",
|
|
||||||
description="Magic App",
|
|
||||||
packages=find_packages(),
|
|
||||||
install_requires=[
|
|
||||||
"flask>=1.1.2,<2",
|
|
||||||
"flask-wtf>=0.14.3,<0.15",
|
|
||||||
"ruamel.yaml>=0.16.10,<0.17",
|
|
||||||
],
|
|
||||||
)
|
|
25
tox.ini
25
tox.ini
@ -1,25 +0,0 @@
|
|||||||
[tox]
|
|
||||||
envlist =
|
|
||||||
py38
|
|
||||||
lint
|
|
||||||
sort
|
|
||||||
format
|
|
||||||
skip_missing_interpreters = True
|
|
||||||
isolated_build = True
|
|
||||||
|
|
||||||
[testenv]
|
|
||||||
|
|
||||||
[testenv:lint]
|
|
||||||
skipdist = True
|
|
||||||
deps = flake8
|
|
||||||
commands = flake8 {posargs} magic_app/
|
|
||||||
|
|
||||||
[testenv:sort]
|
|
||||||
skipdist = True
|
|
||||||
deps = isort
|
|
||||||
commands = isort {posargs:-rc -c} -sp setup.cfg magic_app/
|
|
||||||
|
|
||||||
[testenv:format]
|
|
||||||
skipdist = True
|
|
||||||
deps = black
|
|
||||||
commands = black {posargs:--check} magic_app/
|
|
Reference in New Issue
Block a user