forked from ggozad/behaving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.43 KB
/
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
32
33
34
35
36
37
38
from setuptools import setup, find_packages
version = '1.5.6.dev'
setup(name='behaving',
version=version,
description="Behavior-Driven-Development testing for multi-user web/mail/sms apps",
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
],
keywords='BDD Behavior-Driven-Development testing',
author='Yiorgis Gozadinos',
author_email='ggozad@crypho.com',
url='http://github.com/ggozad/behaving',
license='GPL',
packages=find_packages('src', exclude=['tests']),
package_dir={'': 'src'},
namespace_packages=['behaving'],
include_package_data=True,
zip_safe=False,
install_requires=['parse', 'behave', 'splinter'],
tests_require=['mr.developer', 'zc.buildout'],
entry_points="""
[console_scripts]
mailmock = behaving.mail.mock:main
smsmock = behaving.sms.mock:main
gcmmock = behaving.notifications.gcm.mock:main
"""
)