-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·41 lines (39 loc) · 1.34 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·41 lines (39 loc) · 1.34 KB
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
#! /usr/bin/env python
#! -*- coding: utf-8 *-*-
from setuptools import setup, find_packages
readme = open('README.md', 'r').read()
setup(
name='webpagetest',
version='0.2',
url='https://github.com/khilnani/webpagetest.py',
license='MIT',
author='khilnani',
author_email='nik@khilnani.org',
description='Python CLI to schedule tests with WebPageTest.org.',
include_package_data=True,
long_description=readme,
packages=find_packages(),
install_requires=['requests','texttable'],
entry_points={
'console_scripts': [
'wpt = webpagetest.main:main',
]
},
keywords=('webpagetest', 'wpt'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)