-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 948 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 948 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
from setuptools import setup, find_packages
VERSION = '0.0.9'
DESCRIPTION = 'A data scraper for Etsy stores'
LONG_DESCRIPTION = 'A data scraper for Etsy stores which allows you to collect product and store details using Beautiful Soup and Requests.'
CLASSIFIERS = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7'
]
setup(
name='EtsyScraperLib',
version=VERSION,
author='v0rkath',
author_email='<x02@fastmail.com>',
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=['beautifulsoup4', 'requests'],
keywords=['etsy', 'scraper', 'data', 'store', 'shop', 'price'],
license='MIT',
classifiers=CLASSIFIERS
)