Merge pull request #440 from reduxionist/update-packaging-files

Update packaging files before release of 0.1.18 to PyPI
This commit is contained in:
Jonathan Barratt 2016-10-28 10:10:36 +07:00 committed by GitHub
commit b1e9bc4e93
5 changed files with 27 additions and 78 deletions

21
AUTHORS
View File

@ -1,13 +1,24 @@
django-helpdesk was originally written by Ross Poulton. Since publishing the
code a number of people have made some fantastic improvements and provided
bug fixes and updates as the Django codebase has moved on and caused small
portions of this application to break.
django-helpdesk was originally written by Ross Poulton. After nearly nine
years under his guidance, the project graduated to its own eponymous
organization, and is currently maintained by:
To these people, and any more, my sincere thanks:
Alex Seeholzer (@flinz)
Garret Wassermann (@gwasser)
Jonathan Barratt (@reduxionist)
Since publishing the code a number of people have made some fantastic
improvements and provided bug fixes and updates as the Django codebase
has moved on and caused small portions of this application to break.
To these people, and many more, our sincere thanks:
Alex Barcelo
Andreas Kotowicz
Chris Etcp
Daryl Egarr
David Clymer
Loe Spee
Maxim Litnitskiy
Nikolay Panov
Stefano Brentegani
Tony Zhu

View File

@ -1,64 +0,0 @@
2009-09-09 r138 Issue #104 Add a CHANGELOG file
2009-09-09 r139 Issue #102 Add Ticket CC's
Add rudimentary CC: functionality on tickets, controlled by staff users. CC's
can be e-mail addresses or users, who will receive copies of all emails sent
to the Submitter. This is a work in progress.
2009-09-09 r140 Issue #13 Add Tags to tickets
Patch courtesy of david@zettazebra.com, adds the ability to add tags to
tickets if django-tagging is installed and in use. If django-tagging isn't
being used, no change is visible to the user.
2009-10-13 r141 Issue #118 Incorrect locale handling on email templates
Patch courtesy of hgeerts. Corrects the handling of locale on email
templaets, defaulting to English if no locale is provided.
2009-10-13 r142 Issue #117 Incorrect I18N usage in a few spots
Patch thanks to hgeerts.
2009-10-13 r143 Issue #113 - Clicking Queue names on the Dashboard was showing
all tickets; now only shows open tickets. Thanks to Andreas Kotowicz for the
sugestion.
2009-12-16 r144 Issue #122 - Infinite loop when most recent ticket was
opened in December. Thanks to Chris Vigelius for the report.
2009-12-16 r145 issue #123 - Google Chart doesn't show when there is a large
volume of data in the system. This patch restricts the chart to 1000px wide.
2009-12-16 r146 Issue #121 Formatting fix for email subjects. Thanks,
Andreas Kotowicz.
2009-12-16 r147 Issue #119 Update Russian translation, thanks to Alex Yakovlev
2009-12-23 r148 Issue #125 Errors occurring when running reports with no data
2010-01-20 r149 Issue #126 Reports didn't work with transalations.
2010-01-20 r150 Issue #127 Add german transalation, courtesy of openinformation.org
2009-01-20 r151 Issue #128 If queue name has a dash in it, email imported failed. Thanks to enix.org for the patch.
2010-01-21 r152 Fix indentation error caused by issue #126.
2010-01-26 r153 Fix issue #129 - can not 'unassign' tickets. Thanks to
lukeman for the patch.
2010-01-26 r154 Fix bug in the code from Issue #102 where TicketCC's couldn't
be deleted. Thanks again to lukeman.
2010-01-31 r155 Fix bug caused by issue #129 - ticket followup titles being
set incorrectly. Thanks to Lukeman for the fix.
2010-07-16 r157 Fix issues #141, #142 - IMAP infinite loops and ticket
pagination issues. Thanks to Walter Doekes for the patches.
2010-07-16 r158 New CSRF functionality for Django 1.1+. Thanks to
'litchfield4' for the patch.
2010-09-04 r159 Error when updating multiple tickets. Issue #135.
2010-09-04 r160 Fix translation blocks in deletion templates. Some translation strings will need to be updated. Thanks to william88 for the bug report.
2010-09-04 r161 Fix jQuery filename in public templates. Thanks to bruno.braga for the fix.

View File

@ -1,7 +1,6 @@
include README
include UPGRADE
include README.rst
include AUTHORS
include LICENSE*
include CHANGELOG
include requirements.txt
recursive-include helpdesk/static/helpdesk *

View File

@ -10,7 +10,7 @@ django-helpdesk - A Django powered ticket tracker for small businesses.
Copyright 2009- Ross Poulton and contributors. All Rights Reserved. See LICENSE for details.
django-helpdesk was formerly known as Jutda Helpdesk, named after the
company who originally created it. As of January 2011 the name has been
company which originally created it. As of January 2011 the name has been
changed to reflect what it really is: a Django-powered ticket tracker with
contributors reaching far beyond Jutda.

View File

@ -66,7 +66,7 @@ def find_package_data(
bad_name = True
if show_ignored:
print(
"Directory %s ignored by pattern %s" % (fn, pattern),
"Directory %s ignored by pattern %s" % (fn, pattern),
file=sys.stderr
)
@ -91,7 +91,7 @@ def find_package_data(
bad_name = True
if show_ignored:
print(
"File %s ignored by pattern %s" % (fn, pattern),
"File %s ignored by pattern %s" % (fn, pattern),
file=sys.stderr
)
break
@ -116,7 +116,7 @@ django-helpdesk
===============
This is a Django-powered helpdesk ticket tracker, designed to
plug into an existing Django website and provide you with
plug into an existing Django website and provide you with
internal (or, perhaps, external) helpdesk management.
"""
@ -137,10 +137,13 @@ setup(
"Topic :: Office/Business",
"Topic :: Software Development :: Bug Tracking",
],
keywords=['django', 'helpdesk', 'tickets', 'incidents', 'cases'],
keywords=['django', 'helpdesk', 'django-helpdesk', 'tickets', 'incidents',
'cases', 'bugs', 'track', 'support'],
author='Ross Poulton',
author_email='ross@rossp.org',
url='http://github.com/django-helpdesk/django-helpdesk',
maintainer='Jonathan Barratt',
maintainer_email='jonathan@the-im.com',
url='https://github.com/django-helpdesk/django-helpdesk',
license='BSD',
packages=find_packages(),
package_data=find_package_data("helpdesk", only_in_packages=False),