|
1 |
| -from setuptools import setup, find_packages |
2 | 1 | from codecs import open
|
3 | 2 | from os import path
|
4 | 3 |
|
| 4 | +from setuptools import find_packages, setup |
| 5 | + |
5 | 6 | here = path.abspath(path.dirname(__file__))
|
6 | 7 |
|
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: |
8 | 9 | long_description = f.read()
|
9 | 10 |
|
10 | 11 | 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", |
16 | 15 | long_description_content_type="text/markdown",
|
17 | 16 | 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", |
26 | 21 | 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", |
30 | 25 | ],
|
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"], |
39 | 30 | )
|
0 commit comments