From 47cced40c7d21b2ee25207ccf64ed2772c433eab Mon Sep 17 00:00:00 2001 From: Cas Rusnov Date: Sun, 14 Apr 2019 18:43:15 -0700 Subject: [PATCH] Fix some things in setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 84d9008..5635ec0 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ """Package configuration.""" from setuptools import find_packages, setup -LONG_DESCRIPTION = """Pixywerk 2 is a DWIM filesystem based static site generator.""" +LONG_DESCRIPTION = """Pixywerk 2 is a filesystem based static site generator.""" INSTALL_REQUIRES = ["yaml-1.3", "markdown", "jstyleson", "jinja2"] @@ -37,7 +37,7 @@ setup( "Programming Language :: Python :: 3 :: Only", "Topic :: Software Development :: Libraries :: Python Modules", ], - description="A filesystem-based DWIM website generator / CMS", + description="A filesystem-based website generator / CMS", # entry_points={ # 'console_scripts': [ # 'cookbook = spicerack.cookbook:main', @@ -45,7 +45,7 @@ setup( # }, extras_require=EXTRAS_REQUIRE, install_requires=INSTALL_REQUIRES, - keywords=["wmf", "automation", "orchestration"], + keywords=["cms", "website", "compiler"] license="MIT", long_description=LONG_DESCRIPTION, name="pixywerk2", # Must be the same used for __version__ in __init__.py