https://github.com/Yelp/MOE
Raw File
Tip revision: 525d6f756ce59bf62c8b2dcac3e44596be92273c authored by Eric Liu on 28 March 2014, 00:15:37 UTC
responding to xanda's review on RB #51329
Tip revision: 525d6f7
setup.py
import os

from setuptools import setup, find_packages

here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()

requires = [
    'pyramid',
    'WebError',
    'pymongo',
    'testify',
    'webtest',
    'nose',
    'yolk',
    'numpy',
    'scipy',
    'matplotlib',
    'simplejson',
    'colander',
    'sphinx',
    'breathe',
    ]

setup(name='MOE',
      version='0.0.1',
      description='Metric Optimization Engine',
      long_description=README,
      classifiers=[
        "Programming Language :: Python",
        "Framework :: Pylons",
        "Topic :: Internet :: WWW/HTTP",
        "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
        ],
      author="Scott Clark and Eric Liu",
      author_email='sclark@yelp.com',
      url='https://github.com/sc932/MOE',
      keywords='web pyramid pylons mongodb',
      packages=find_packages(),
      include_package_data=True,
      zip_safe=False,
      install_requires=requires,
      tests_require=requires,
      test_suite="moe",
      entry_points = """\
      [paste.app_factory]
      main = moe:main
      """,
      paster_plugins=['pyramid'],
      )

back to top