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,
		)
示例#2
0
    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",
    ],
)
示例#3
0
文件: setup.py 项目: DELILE/mdhandle
setup(
    name=NAME,
    version=VERSION,
    description=DESCRIPTION,
    long_description=open("README.rst").read(),
    author=AUTHOR,
    author_email=AUTHOR_EMAIL,
    license=LICENSE,
    url=URL,
    packages=find_packages(),
    scripts=script_files,

#    ext_modules = [lammps_library],

    # Ordered in revrse order of dependancies
    install_requires=[
            pytables_name,
            "numpydoc>=0.4",
            "Sphinx>=1.0",
            "scipy>=0.8",
            "numpy>=1.5",
            "iPython>=0.11"
            ],
    classifiers=[
        "Development Status :: 4 - Beta ",
        "Environment :: Console",
        "Intended Audience :: End Users/Desktop",
        "Intended Audience :: Researchers",
        "License ::  OSI Approved :: GPLv2",
        "Operating System :: POSIX",
        'Operating System :: MacOS :: MacOS X',
        "Programming Language :: Python",
                ],
    zip_safe=False,
    )
示例#4
0
#######################################################################
# Jinja2 pyblosxom renderer.
#
# Massively inspired by Sebastian Spaeth's Jinja2 renderer (and even
# borrows some code) but mostly reimplemented by Chris Webber.
#
# Copyright (c) 2010-2011 Sebastian Spaeth, Christopher Allan Webber
#
# PyBlosxom (and this jinja2 plugin) distributed under the MIT
# license.  See the file LICENSE for distribution details.
#######################################################################


try:
    from distribute import setup, find_packages
    print "Using distribute...."
except ImportError:
    from setuptools import setup, find_packages
    print "Using setuptools...."

setup(
    name="jinjablosxom",
    author="Christopher Allan Webber",
    license="MIT")
示例#5
0
#######################################################################
# Jinja2 pyblosxom renderer.
#
# Massively inspired by Sebastian Spaeth's Jinja2 renderer (and even
# borrows some code) but mostly reimplemented by Chris Webber.
#
# Copyright (c) 2010-2011 Sebastian Spaeth, Christopher Allan Webber
#
# PyBlosxom (and this jinja2 plugin) distributed under the MIT
# license.  See the file LICENSE for distribution details.
#######################################################################

try:
    from distribute import setup, find_packages
    print "Using distribute...."
except ImportError:
    from setuptools import setup, find_packages
    print "Using setuptools...."

setup(name="jinjablosxom", author="Christopher Allan Webber", license="MIT")
示例#6
0
    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"
      ])
示例#7
0
try:
    from distribute import setup
except ImportError:
    from setuptools import setup

setup(
    name='entityx',
    version='0.0.1',
    packages=['entityx'],
    license='MIT',
    description='EntityX Entity-Component Framework Python bindings',
)
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,
)
示例#9
0
文件: setup.py 项目: acron0/entityx
try:
    from distribute import setup
except ImportError:
    from setuptools import setup

setup(
    name='entityx',
    version='0.0.1',
    packages=['entityx'],
    license='MIT',
    description='EntityX Entity-Component Framework Python bindings',
    )