-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 840 Bytes
/
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
from distutils.core import setup
setup(
name='testinger',
version='0.0.1',
packages=['testinger'],
keywords='unittest test acceptance tests scenarios load',
url='https://github.com/kivio/python-testinger',
license='BSD',
author='kivio',
author_email='[email protected]',
description='New python test framework',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Environment :: Console",
"Environment :: Web Environment",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Traffic Generation",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
],
)