forked from ggozad/behaving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.12 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
from setuptools import setup, find_packages
version = '1.4'
setup(name='behaving',
version=version,
description="Behavior-Driven-Development testing for multi-user web/mail/sms apps",
long_description=open("README.rst").read() + open("CHANGES.txt").read(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
keywords='BDD Behavior-Driven-Development testing',
author='Yiorgis Gozadinos',
author_email='[email protected]',
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=['setuptools', 'parse', 'behave', 'splinter'],
entry_points="""
[console_scripts]
mailmock = behaving.mail.mock:main
smsmock = behaving.sms.mock:main
gcmmock = behaving.notifications.gcm.mock:main
"""
)