-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1.23 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1.23 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
from setuptools import setup
from behave_cli import __version__
setup(version=unicode(__version__),
name="behave_cli",
author="Konstantinos Koukopoulos",
author_email='kk@longaccess.com',
license="Apache",
description="Longaccess BDD CLI step library",
long_description=open('README.md').read(),
packages=['behave_cli', 'behave_cli.api', 'behave_cli.s3mock',
'behave_cli.expect', 'behave_cli.netrc', 'behave_cli.files'],
install_requires=['behave', 'pexpect', 'requests', 'moto', 'mock'],
url='https://github.com/longaccess/longaccess-behave/',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Testing',
]
)