diff --git a/.gitignore b/.gitignore index 77de465..5f04c34 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ __pycache__ *.pyc *.pyo +*.egg-info .env diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..91ef6dc --- /dev/null +++ b/setup.py @@ -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'], + ) \ No newline at end of file