Skip to content

Commit 1193d13

Browse files
committed
Update version to 1.1.12
1 parent 731f625 commit 1193d13

File tree

1 file changed

+17
-26
lines changed

1 file changed

+17
-26
lines changed

setup.py

Lines changed: 17 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,30 @@
1-
from setuptools import setup, find_packages
21
from codecs import open
32
from os import path
43

4+
from setuptools import find_packages, setup
5+
56
here = path.abspath(path.dirname(__file__))
67

7-
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
8+
with open(path.join(here, "README.md"), encoding="utf-8") as f:
89
long_description = f.read()
910

1011
setup(
11-
name='autoscraper',
12-
13-
version='1.1.11',
14-
15-
description='A Smart, Automatic, Fast and Lightweight Web Scraper for Python',
12+
name="autoscraper",
13+
version="1.1.12",
14+
description="A Smart, Automatic, Fast and Lightweight Web Scraper for Python",
1615
long_description_content_type="text/markdown",
1716
long_description=long_description,
18-
19-
url='https://github.com/alirezamika/autoscraper',
20-
21-
author='Alireza Mika',
22-
author_email='alirezamika@gmail.com',
23-
24-
license='MIT',
25-
17+
url="https://github.com/alirezamika/autoscraper",
18+
author="Alireza Mika",
19+
author_email="alirezamika@gmail.com",
20+
license="MIT",
2621
classifiers=[
27-
'Development Status :: 4 - Beta',
28-
'License :: OSI Approved :: MIT License',
29-
'Programming Language :: Python :: 3',
22+
"Development Status :: 4 - Beta",
23+
"License :: OSI Approved :: MIT License",
24+
"Programming Language :: Python :: 3",
3025
],
31-
32-
keywords='scraping - scraper',
33-
34-
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
35-
36-
python_requires='>=3.6',
37-
install_requires=['requests', 'bs4', 'lxml'],
38-
26+
keywords="scraping - scraper",
27+
packages=find_packages(exclude=["contrib", "docs", "tests"]),
28+
python_requires=">=3.6",
29+
install_requires=["requests", "bs4", "lxml"],
3930
)

0 commit comments

Comments
 (0)