Statistics
| Branch: | Tag: | Revision:

root / ui.pyramid / setup.py @ d12e4bad

History | View | Annotate | Download (1.1 kB)

1
import os
2

    
3
from setuptools import setup, find_packages
4

    
5
here = os.path.abspath(os.path.dirname(__file__))
6
README = open(os.path.join(here, 'README.txt')).read()
7
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
8

    
9
requires = ['pyramid', 'WebError', 'apache-libcloud']
10

    
11
setup(name='synnefo',
12
      version='0.1',
13
      description='cloud management web app',
14
      long_description=README + '\n\n' +  CHANGES,
15
      classifiers=[
16
        "Programming Language :: Python",
17
        "Framework :: Pylons",
18
        "Topic :: Internet :: WWW/HTTP",
19
        "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
20
        ],
21
      author='unweb.me',
22
      author_email='we@unweb.me',
23
      url='https://unweb.me',
24
      keywords='web pyramid pylons',
25
      packages=find_packages('src'),
26
      package_dir = {'':'src'},
27
      include_package_data=True,
28
      zip_safe=False,
29
      install_requires=requires,
30
      tests_require=requires,
31
      test_suite="synnefo",
32
      entry_points = """\
33
      [paste.app_factory]
34
      main = synnefo:main
35
      """,
36
      paster_plugins=['pyramid'],
37
      )
38