forked from Commonjava/indy-perf-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1022 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
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python2
from setuptools import setup, find_packages
import sys
setup(
zip_safe=True,
use_2to3=False,
name='indyperf',
version='0.0.1',
long_description='Orchestrate a build performance test against Indy with various configuration options',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Public License v2 (APL)",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: Utilities",
],
keywords='indy maven build java ',
author='John Casey',
author_email='[email protected]',
url='https://github.com/Commonjava/indy',
license='APLv2+',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
install_requires=[
"requests",
"ruamel.yaml",
"click"
],
entry_points={
'console_scripts': [
'run-indyperf-test = indyperf:run'
],
}
)