print "Using setuptools...." import json creds = json.load(open("manifest.json")) setup( name=creds["name"], version=creds["version"], description=creds["description"], long_description=open("README.markdown").read(), license="MIT", author="Mario Fernandez", author_email="*****@*****.**", keywords="scrap metal gcal", # url="https://github.com/sirech/deliver", # download_url="https://github.com/sirech/deliver", packages=find_packages(exclude=[]), test_suite="metalfinder.tests.testrunner.test_suite", install_requires=["Mock>=0.7.0", "BeautifulSoup>=3.2.0", "gdata"], classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", ], )
from distribute import setup, find_packages print "Using distribute...." except ImportError: from setuptools import setup, find_packages print "Using setuptools...." import json creds = json.load(open('manifest.json')) setup(name=creds['name'], version=creds['version'], description=creds['description'], long_description=open('README.markdown').read(), license='MIT', author="Mario Fernandez", author_email="*****@*****.**", keywords="mailing list", url="https://github.com/sirech/deliver", download_url="https://github.com/sirech/deliver", packages=find_packages(exclude=[]), test_suite="deliver.tests.testrunner.test_suite", install_requires=['Mock>=0.7.0', 'sqlalchemy>=0.6.0', 'supay>=0.0.7'], classifiers=[ "Development Status :: 3 - Alpha", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP" ])
from distribute import setup, find_packages setup( name="One Button Django Beanstalk", version="0.1", description ="Quickly deploy django to Amazon beanstalk", long_description = open('README.rst').read(), author = "The Jim Factor", url = "http://github.com/thejimfactor", license = "MIT", packages = find_packages(), include_package_data = True, zip_safe, False, )
from distribute import setup, find_packages setup( name="One Button Django Beanstalk", version="0.1", description="Quickly deploy django to Amazon beanstalk", long_description=open('README.rst').read(), author="The Jim Factor", url="http://github.com/thejimfactor", license="MIT", packages=find_packages(), include_package_data=True, zip_safe, False, )