diff --git a/requirements.pypm b/requirements.pypm index 310dc0b..36b0b24 100644 --- a/requirements.pypm +++ b/requirements.pypm @@ -1 +1,2 @@ bottle +nose diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..afb789b --- /dev/null +++ b/setup.py @@ -0,0 +1,31 @@ +from setuptools import setup, find_packages + + +def read(relative): + with open(relative, 'r') as fin: + contents = fin.read() + return [l for l in contents.split('\n') if l != ''] + + +setup( + name='python-env', + version='0.0.1', + description='HP Helion Cloud Sample Python WSGI App', + author='John Hopper', + author_email='john.hopper@hp.com', + url='https://github.com/hpcloud/python-env', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Environment :: Other Environment', + 'Natural Language :: English', + 'Intended Audience :: Developers', + 'Programming Language :: Python', + 'Programming Language :: Python :: 3.3', + 'Topic :: Internet', + 'Topic :: Utilities' + ], + tests_require=read('./requirements.pypm'), + install_requires=read('./requirements.pypm'), + test_suite='nose.collector', + include_package_data=True, + packages=find_packages(exclude=['*.tests']))