Update setup() classifications, use README as long description

This commit is contained in:
Garret Wassermann 2018-07-18 23:34:29 -04:00
parent e2f4f22b01
commit 38d9ae9c57
2 changed files with 8 additions and 11 deletions

View File

@ -19,9 +19,9 @@ AUTHOR = 'django-helpdesk team'
URL = 'https://github.com/django-helpdesk/django-helpdesk'
CLASSIFIERS = ['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django :: 2.0']
KEYWORDS = []
PACKAGES = ['demodesk']

View File

@ -110,28 +110,25 @@ def get_requirements():
return requirements_list
LONG_DESCRIPTION = """
===============
django-helpdesk
===============
def get_long_description():
with open(os.path.join(os.path.dirname(__file__), "README.rst")) as f:
long_desc = f.read()
return long_desc
This is a Django-powered helpdesk ticket tracker, designed to
plug into an existing Django website and provide you with
internal (or, perhaps, external) helpdesk management.
"""
setup(
name='django-helpdesk',
version=version,
description="Django-powered ticket tracker for your helpdesk",
long_description=LONG_DESCRIPTION,
long_description=get_long_description(),
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Environment :: Web Environment",