-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.22 KB
/
setup.py
File metadata and controls
37 lines (33 loc) · 1.22 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
"""Python API wrapper for the Crawlbase API."""
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
readme = open('README.md').read()
setup(
name = 'crawlbase',
license = 'Apache-2.0',
version = '1.0.0',
description = 'A Python class that acts as wrapper for Crawlbase scraping and crawling API',
long_description = readme,
long_description_content_type = 'text/markdown',
author = 'Crawlbase',
author_email = 'info@crawlbase.com',
url = 'https://github.com/crawlbase-source/crawlbase-python',
keywords = 'scraping scraper crawler crawling crawlbase api',
include_package_data = True,
packages = find_packages(),
classifiers = (
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.9',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Utilities',
),
)