-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
56 lines (53 loc) · 1.66 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
49
50
51
52
53
54
55
56
import os
from setuptools import setup
from oct import __version__
BASE_DIR = os.path.abspath(os.path.dirname(__file__))
with open('README.rst') as f:
long_description = f.read()
setup(
name='oct',
version=__version__,
author='TheGhouls',
author_email='[email protected]',
packages=['oct', 'oct.core', 'oct.utilities', 'oct.tools', 'oct.results'],
package_data={
'oct.utilities': [
'templates/css/*',
'templates/configuration/*',
'templates/html/*',
'templates/scripts/*',
'templates/javascript/*',
'templates/fonts/*'
]
},
description="A library for performances testing, give you the tools for load testing anything with any language",
long_description=long_description,
url='https://github.com/TheGhouls/oct',
download_url='https://github.com/TheGhouls/oct/archive/master.zip',
keywords=['testing', 'perfs', 'performances', 'web', 'load', 'zeromq'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
install_requires=[
'pygal',
'peewee',
'oct-turrets>=0.2.4',
'six',
'pyzmq',
'numpy',
'jinja2',
'pandas',
'ujson',
'requests'
],
entry_points={'console_scripts': [
'oct = oct.utilities.commands:main'
]},
)