29 lines
688 B
Python
29 lines
688 B
Python
"""
|
|
The OpenStack Neat Project
|
|
==========================
|
|
"""
|
|
|
|
import distribute_setup
|
|
distribute_setup.use_setuptools()
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='openstack-neat',
|
|
version='0.1',
|
|
description='The OpenStack Neat Project',
|
|
long_description=__doc__,
|
|
author='Anton Beloglazov',
|
|
author_email='anton.beloglazov@gmail.com',
|
|
url='https://github.com/beloglazov/openstack-neat',
|
|
platforms='any',
|
|
|
|
packages=find_packages(),
|
|
tests_require=['nose', 'mocktest'],
|
|
|
|
# Project uses reStructuredText, so ensure that the docutils get
|
|
# installed or upgraded on the target machine
|
|
#install_requires = ['docutils>=0.3'],
|
|
)
|