Initial commit

This commit is contained in:
xenia 2021-05-12 14:51:47 -04:00
commit ba98dfb949
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 .

0
megacom/__init__.py Normal file
View File

1
megacom/__main__.py Normal file
View File

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

18
setup.py Normal file
View File

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