-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (37 loc) · 1.02 KB
/
Copy pathsetup.py
File metadata and controls
38 lines (37 loc) · 1.02 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
38
from setuptools import setup, find_packages
setup(
name='ipars',
version='3.9.3',
description='Библиотека для работы с файлами во время парсинга',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author_email='statute-wasp-frisk@duck.com',
packages=find_packages(),
author='Ilia Miheev',
license='MIT',
url='https://iliamiheev.github.io/ipars-doc/#/./home',
install_requires=[
'requests',
'aiohttp',
'selenium',
'lxml',
'bs4',
'progress',
'random_user_agent',
'cerberus'
],
keywords=[
'ipars',
'ипарс',
'парсинг',
'скрапинг',
'parsing',
'scraping',
'bs4',
'beautifulsoup4'
],
project_urls={
'Bug Reports': 'https://github.com/IliaMiheev/ipars/issues',
'Source': 'https://github.com/IliaMiheev/ipars',
},
)