-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 973 Bytes
/
setup.py
File metadata and controls
39 lines (34 loc) · 973 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
37
38
39
import os
from setuptools import setup, find_packages
VERSION = "1.2.1"
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/sdk-python",
project_urls={
"Documentation": "https://github.com/scrapeless-ai/sdk-python#readme",
"Source": "https://github.com/scrapeless-ai/sdk-python",
},
long_description=read("README.md"),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
'requests>=2.25.0',
],
python_requires='>=3.8',
)