-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
27 lines (26 loc) · 801 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
from setuptools import setup
setup(
name = "python-builtwith",
version = "1.0.0",
description = "BuiltWith API versions 1, 2 and 7 client",
author = "Clay McClure, Jon Gaulding, Andrew Harris",
author_email = "[email protected]",
url = "https://github.com/claymation/python-builtwith",
classifiers = [
'Development Status :: 7 - Inactive',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
],
py_modules = ['builtwith'],
install_requires = [
'requests',
],
test_suite = 'nose.collector',
tests_require = [
'httpretty',
'nose',
]
)