12 lines
317 B
Python
12 lines
317 B
Python
#!/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'],
|
|
) |