template bootstrap project

This commit is contained in:
xenia 2021-06-14 05:38:51 -04:00
parent 3a75ad640d
commit e2a968073d
5 changed files with 39 additions and 0 deletions

9
leylines-bootstrap/.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
.venv
*.pyc
*.pyo
*.pyd
__pycache__
*.egg-info
.env
.vimrc
.ycm_extra_conf.py

View File

@ -0,0 +1,9 @@
.PHONY: check install
check:
@mypy . || true
@flake8 . || true
@pyflakes . || true
install:
pip install --user -e .

View File

@ -0,0 +1 @@
print("Hello, World!")

View File

@ -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)