diff --git a/backend/README.md b/backend/README.md index d47242a..d5e4d19 100644 --- a/backend/README.md +++ b/backend/README.md @@ -35,29 +35,24 @@ After installing the application you need to perform following steps: 1. (optional) generate production.ini (or use a copy of development.ini) - appenlight-make-config production.ini 2. Setup database structure: - appenlight-migratedb -c FILENAME.ini 3. To configure elasticsearch: - appenlight-reindex-elasticsearch -t all -c FILENAME.ini 4. Create base database objects (run this command with help flag to see how to create administrator user) - appenlight-initializedb -c FILENAME.ini 5. Generate static assets - appenlight-static -c FILENAME.ini Running application diff --git a/backend/setup.py b/backend/setup.py index 45d9a23..fca933a 100644 --- a/backend/setup.py +++ b/backend/setup.py @@ -44,12 +44,19 @@ setup( description="appenlight", long_description=README, classifiers=[ + "Framework :: Pyramid", + "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", - "Framework :: Pylons", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.6", + "Topic :: System :: Monitoring", + "Topic :: Software Development", + "Topic :: Software Development :: Bug Tracking", + "Topic :: Internet :: Log Analysis", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ], - version='2.0.0rc1', + version="2.0.0rc1", license=__license__, author=__author__, url=__url__,