-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (32 loc) · 1.03 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
from setuptools import setup, find_packages
setup(
name='target',
version='0.0.11',
description='a performance measurement stub',
maintainer='Alexey Lavrenuke (load testing)',
maintainer_email='[email protected]',
packages=find_packages(exclude=["tests", "tmp", "docs", "data"]),
install_requires=[
'numpy', 'watchdog',
'tornado>=4.4.2',
],
setup_requires=[
'pytest-runner',
'flake8',
],
tests_require=['pytest', ],
license='MPLv2',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: POSIX',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
entry_points={'console_scripts': [
'target = target.cmd:main',
'tailgc = target.tail:main',
], }, )