Writing your setup.py
@sanketsaurav
from distutils.core import setup
setup(
name='MoonGrabber',
version='0.4.2',
author='Dr. Nefario',
author_email='
[email protected]',
packages=['moongrabber', 'moongrabber.test'],
scripts=['bin/clean-gun.py','bin/recharge-battery.py'],
url='http://pypi.python.org/pypi/MoonGrabber/',
license='LICENSE.txt',
description='Steal the Moon from your favorite planet.',
long_description=open('README.rst').read(),
install_requires=[
"Django >= 1.1.1"
],
)
SETUP.PY
8/20