-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 938 Bytes
/
setup.py
File metadata and controls
36 lines (31 loc) · 938 Bytes
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
import os
from setuptools import setup
VERSION = "0.0.3"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="scrapeless",
version=VERSION,
author="scrapelessteam",
author_email="scrapelessteam@gmail.com",
description="scrapeless python sdk",
license="MIT",
keywords=[
"scrapeless",
"browserless",
"scraping browser",
"scraping",
"web unlocker",
"captcha solver",
"rotate proxy"
],
url="https://github.com/scrapeless-ai/scrapeless-sdk-python",
project_urls={
"Documentation": "https://github.com/scrapeless-ai/scrapeless-sdk-python#readme",
"Source": "https://github.com/scrapeless-ai/scrapeless-sdk-python",
},
packages=["scrapeless"],
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=["requests"],
)