|
4 | 4 | # from distutils.command.install import install as _install |
5 | 5 |
|
6 | 6 | setup( |
7 | | - name = 'pyseoanalyzer', |
8 | | - version = '3.1.1', |
9 | | - description = 'An SEO tool that gives you general Search Engine Optimization directions.', |
10 | | - author = 'Seth Black', |
11 | | - author_email = 'sblack@sethserver.com', |
12 | | - url = 'https://github.com/sethblack/python-seo-analyzer', |
13 | | - packages = find_packages(), |
14 | | - keywords = ['search engine optimization', 'seo', 'website parser', 'crawler', 'scraper',], |
| 7 | + name='pyseoanalyzer', |
| 8 | + version='3.1.2', |
| 9 | + description='An SEO tool that gives you general Search Engine Optimization directions.', |
| 10 | + author='Seth Black', |
| 11 | + author_email='sblack@sethserver.com', |
| 12 | + url='https://github.com/sethblack/python-seo-analyzer', |
| 13 | + packages=find_packages(), |
| 14 | + keywords=['search engine optimization', 'seo', 'website parser', 'crawler', 'scraper',], |
15 | 15 | package_data={'seoanalyzer': ['templates/index.html',]}, |
16 | | - include_package_data = True, |
17 | | - install_requires = [ |
| 16 | + include_package_data=True, |
| 17 | + install_requires=[ |
18 | 18 | 'BeautifulSoup4', 'requests', 'jinja2', 'urllib3', |
19 | 19 | ], |
20 | | - # no idea why this needed fixing, the diff says it didn't change... |
21 | | - entry_points = { |
| 20 | + entry_points={ |
22 | 21 | 'console_scripts' : [ |
23 | 22 | 'seoanalyze = seoanalyzer.__main__:main' |
24 | 23 | ] |
25 | 24 | }, |
26 | | - classifiers = [ |
| 25 | + classifiers=[ |
27 | 26 | "Programming Language :: Python", |
28 | 27 | "Programming Language :: Python :: 3", |
29 | 28 | "Programming Language :: Python :: 3 :: Only", |
|
37 | 36 | "Topic :: Text Processing", |
38 | 37 | "Topic :: Internet :: WWW/HTTP", |
39 | 38 | ], |
40 | | - zipsafe=False, |
41 | | - long_description = """\ |
| 39 | + zip_safe=False, |
| 40 | + long_description="""\ |
42 | 41 | SEOAnalyzer |
43 | 42 | ----------- |
44 | 43 |
|
|
0 commit comments