Add more packaging boilerplate

This commit is contained in:
Ian Adam Naval 2019-01-21 22:12:15 -05:00
parent bbba4c5b93
commit 9f45f06092
2 changed files with 13 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
__pycache__ __pycache__
*.pyc *.pyc
*.pyo *.pyo
*.egg-info
.env .env

12
setup.py Normal file
View File

@ -0,0 +1,12 @@
#!/usr/bin/env python
from distutils.core import setup
setup(name='ianonavy-autopilot',
version='0.1',
description="Scheduling automation for East Coast Aero Club's flight scheduling software.",
author='Ian Adam Naval',
author_email='ianonav@gmail.com',
packages=['autopilot'],
)