-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
28 lines (26 loc) · 853 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
28
from setuptools import setup, find_packages
try:
with open('README.md', 'r') as f:
long_description = f.read()
except FileNotFoundError:
long_description = ""
setup(name='scraperx',
packages=find_packages(),
version='0.7.1',
python_requires='>=3.6.0',
license="MIT",
description="ScraperX SDK",
long_description=long_description,
long_description_content_type='text/markdown',
author="Eddy Hintze",
author_email="[email protected]",
url="https://github.com/xtream1101/scraperx",
install_requires=['pyyaml',
'parsel',
'requests',
'boto3',
'deepdiff',
'smart_open>=1.8.4',
'charset_normalizer',
],
)