File: setup.py

package info (click to toggle)
openstack-common 0.1%2Bgit20120203-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 280 kB
  • sloc: python: 2,293; makefile: 5
file content (42 lines) | stat: -rw-r--r-- 1,202 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages

version = '0.1'

setup(name='openstack.common',
      version=version,
      description="Common components for Openstack",
      long_description="""\
Common components for Openstack including paster templates.
""",
      classifiers=[
          'Development Status :: 4 - Beta',
          'License :: OSI Approved :: Apache Software License',
          'Operating System :: POSIX :: Linux',
          'Programming Language :: Python :: 2.6',
          'Environment :: No Input/Output (Daemon)',
          ],
      keywords='openstack',
      author='OpenStack',
      author_email='openstack@lists.launchpad.net',
      url='http://www.openstack.org/',
      license='Apache Software License',
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=True,
      install_requires=[
          'greenlet>=0.3.1',
          'pep8',
          'pylint',
          'eventlet',
          'PasteDeploy',
          'routes',
          'webob',
          'nose',
          'mock',
          'webtest',
          'lxml',
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )