Initial commit

This commit is contained in:
haskal 2019-05-28 20:40:02 -04:00
commit 24910a7bfc
5 changed files with 36 additions and 0 deletions

8
.gitignore vendored Normal file
View File

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

9
Makefile Normal file
View File

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

18
setup.py Normal file
View File

@ -0,0 +1,18 @@
from setuptools import setup
setup(name='wikilain',
version='0.1',
description='Sample text',
url='https://example.com',
author='John Smith',
author_email='none@example.com',
license='Undecided',
packages=['wikilain'],
install_requires=[
],
include_package_data=True,
entry_points={
'console_scripts': [
]
},
zip_safe=False)

0
wikilain/__init__.py Normal file
View File

1
wikilain/__main__.py Normal file
View File

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