-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·39 lines (35 loc) · 1.07 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
import setuptools
def read(fname):
""" Return file content. """
with open(fname) as f:
content = f.read()
return content
description = "A plug-n-play package fetch test data from WPT and parse for specific keys"
try:
long_description = read('README.MD')
except IOError:
long_description = description
setuptools.setup(
name="wpt-parser",
package=['wpt-parser'],
version="0.0.6",
author="Bharat Sinha",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/Bharat23/wpt-parser",
packages=setuptools.find_packages(),
license='MIT',
keywords = ['WPT parser', 'wpt', 'speed curve', 'webpagetest', 'json'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Intended Audience :: Developers',
],
install_requires=[
'requests',
],
python_requires='>=3.6',
)