template bootstrap project
This commit is contained in:
parent
3a75ad640d
commit
e2a968073d
|
@ -0,0 +1,9 @@
|
|||
.venv
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.pyd
|
||||
__pycache__
|
||||
*.egg-info
|
||||
.env
|
||||
.vimrc
|
||||
.ycm_extra_conf.py
|
|
@ -0,0 +1,9 @@
|
|||
.PHONY: check install
|
||||
|
||||
check:
|
||||
@mypy . || true
|
||||
@flake8 . || true
|
||||
@pyflakes . || true
|
||||
|
||||
install:
|
||||
pip install --user -e .
|
|
@ -0,0 +1 @@
|
|||
print("Hello, World!")
|
|
@ -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)
|
Loading…
Reference in New Issue