Initial commit
This commit is contained in:
commit
ba98dfb949
|
@ -0,0 +1,8 @@
|
||||||
|
.venv
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
*.pyd
|
||||||
|
__pycache__
|
||||||
|
*.egg-info
|
||||||
|
.env
|
||||||
|
.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,18 @@
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
setup(name='megacom',
|
||||||
|
version='0.1',
|
||||||
|
description='Sample text',
|
||||||
|
url='https://example.com',
|
||||||
|
author='John Smith',
|
||||||
|
author_email='none@example.com',
|
||||||
|
license='Undecided',
|
||||||
|
packages=['megacom'],
|
||||||
|
install_requires=[
|
||||||
|
],
|
||||||
|
include_package_data=True,
|
||||||
|
entry_points={
|
||||||
|
'console_scripts': [
|
||||||
|
]
|
||||||
|
},
|
||||||
|
zip_safe=False)
|
Loading…
Reference in New Issue