forked from zinic/python-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (27 loc) · 970 Bytes
/
setup.py
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
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']))