-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (31 loc) · 1.05 KB
/
setup.py
File metadata and controls
33 lines (31 loc) · 1.05 KB
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
from setuptools import setup, find_packages
version = "0.11"
setup(name="openstack.nose_plugin",
version=version,
description="openstack run_tests.py style output for nosetests",
long_description=open("README.rst").read(),
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
],
keywords="nose",
author="Jason K\xc3\xb6lker",
url="https://github.com/jkoelker/openstack-nose",
license="Apache Software License",
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
install_requires=[
"nose",
"colorama",
"termcolor",
],
entry_points="""
# -*- Entry points: -*-
[nose.plugins.0.10]
openstack.nose_plugin = openstack.nose_plugin:Openstack
""",
namespace_packages=['openstack'],
)