From 53a5a987564a0629538ee150d38eddf5db7c5b2a Mon Sep 17 00:00:00 2001 From: pranavr2003 <56883253+pranavr2003@users.noreply.github.com> Date: Tue, 13 Jul 2021 10:54:57 +0530 Subject: [PATCH] Update setup.py --- setup.py | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/setup.py b/setup.py index 7ffcc96..4debcce 100644 --- a/setup.py +++ b/setup.py @@ -4,32 +4,34 @@ name = "sierra", version = "v2.2.0", author = "Pranav and Siddhesh", - author_email = "BrainStormYourWayIn@gmail.com", - description = "Sierra is a micro templating library for web frameworks in Python.", + author_email = "brainstormyourwayin@gmail.com", + description = "Sierra is a micro templating library for web frameworks in Python", long_description = open("README.md").read(), long_description_content_type = "text/markdown", license = "Apache Software License", url = "http://github.com/BrainStormYourWayIn/sierra", - project_urls = { - "Bug Tracker": "https://github.com/BrainStormYourWayIn/sierra/issues", - "Documentation": "https://brainstormyourwayin.github.io/sierra.github.io/", - }, + project_urls = {"Bug Tracker": "https://github.com/BrainStormYourWayIn/sierra/issues", + "Documentation": "https://brainstormyourwayin.github.io/sierra.github.io/"}, packages = find_packages(where="src"), - keywords = ["CSS", "html", "web Development", "templating", "web framework", "python to html", "python to css", "jinja"], - install_requires = ['pandas', 'bs4'], + keywords = ["css", "html", "web development", "web framework", "templating", "python to HTML", "python to CSS", "jinja", "django"], + install_requires = ['pandas', 'beautifulsoup4'], zip_safe = True, classifiers = [ "Development Status :: 5 - Production/Stable", - "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Operating System :: OS Independent", - "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: Implementation", "Topic :: Software Development :: Libraries :: Application Frameworks", "Topic :: Software Development :: Libraries :: Python Modules", - "Topic :: Utilities", ], package_dir = {"":"src"}, python_requires = ">=3.4",