-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (29 loc) · 770 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·30 lines (29 loc) · 770 Bytes
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
#!/usr/bin/env python
from setuptools import *
setup(
name='pea',
version='0.1.2',
author_email='tim3d.junk+pea@gmail.com',
author='Tim Cuthbertson',
url='http://github.com/gfxmonk/pea/tree',
description="minimal BDD library",
packages = find_packages(),
entry_points = {
'nose.plugins.0.10': ['pea = pea:PeaFormatter']
},
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
],
keywords='test nosetests nose nosetest bdd cucumber lettuce',
install_requires=[
'setuptools',
'nose',
'python-termstyle',
'colorama',
],
)