Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pranavr2003 authored Jul 13, 2021
1 parent a58e778 commit 53a5a98
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 53a5a98

Please sign in to comment.