-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
48 lines (46 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='bfg',
version='0.1.0',
description='a load generation tool and framework',
longer_description='''
BFG is a modular tool and framework for load generation.
''',
maintainer='Alexey Lavrenuke (load testing)',
maintainer_email='[email protected]',
url='https://github.com/direvius/bfg',
packages=find_packages(exclude=["tests", "tmp", "docs", "data"]),
install_requires=[
'hyper',
'numpy',
'pandas',
'PyYAML',
'pytoml',
'arrow',
# 'python-spdylay',
],
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Software Development :: Testing :: Traffic Generation',
'Topic :: System :: Benchmark',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'bfg = bfg.cli:main',
],
},
package_data={
'bfg': ['config/*'],
},
)