From e2a968073d45028f9a136fbd5783b97777e0b431 Mon Sep 17 00:00:00 2001 From: haskal Date: Mon, 14 Jun 2021 05:38:51 -0400 Subject: [PATCH] template bootstrap project --- leylines-bootstrap/.gitignore | 9 +++++++++ leylines-bootstrap/Makefile | 9 +++++++++ .../leylines-bootstrap/__init__.py | 0 .../leylines-bootstrap/__main__.py | 1 + leylines-bootstrap/setup.py | 20 +++++++++++++++++++ 5 files changed, 39 insertions(+) create mode 100644 leylines-bootstrap/.gitignore create mode 100644 leylines-bootstrap/Makefile create mode 100644 leylines-bootstrap/leylines-bootstrap/__init__.py create mode 100644 leylines-bootstrap/leylines-bootstrap/__main__.py create mode 100644 leylines-bootstrap/setup.py diff --git a/leylines-bootstrap/.gitignore b/leylines-bootstrap/.gitignore new file mode 100644 index 0000000..17d2fc8 --- /dev/null +++ b/leylines-bootstrap/.gitignore @@ -0,0 +1,9 @@ +.venv +*.pyc +*.pyo +*.pyd +__pycache__ +*.egg-info +.env +.vimrc +.ycm_extra_conf.py diff --git a/leylines-bootstrap/Makefile b/leylines-bootstrap/Makefile new file mode 100644 index 0000000..1b2beff --- /dev/null +++ b/leylines-bootstrap/Makefile @@ -0,0 +1,9 @@ +.PHONY: check install + +check: + @mypy . || true + @flake8 . || true + @pyflakes . || true + +install: + pip install --user -e . diff --git a/leylines-bootstrap/leylines-bootstrap/__init__.py b/leylines-bootstrap/leylines-bootstrap/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/leylines-bootstrap/leylines-bootstrap/__main__.py b/leylines-bootstrap/leylines-bootstrap/__main__.py new file mode 100644 index 0000000..7df869a --- /dev/null +++ b/leylines-bootstrap/leylines-bootstrap/__main__.py @@ -0,0 +1 @@ +print("Hello, World!") diff --git a/leylines-bootstrap/setup.py b/leylines-bootstrap/setup.py new file mode 100644 index 0000000..c4f5359 --- /dev/null +++ b/leylines-bootstrap/setup.py @@ -0,0 +1,20 @@ +from setuptools import setup + +setup(name='leylines-bootstrap', + version='0.1', + description='Sample text', + url='https://awoo.systems', + author='haskal', + author_email='haskal@awoo.systems', + license='AGPLv3', + packages=['leylines-bootstrap'], + install_requires=[ + # requirements + ], + include_package_data=True, + entry_points={ + 'console_scripts': [ + # bins + ] + }, + zip_safe=True)