mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
Declared project as production/stable.
This commit is contained in:
parent
2596bc60e1
commit
142d8de7fa
5 changed files with 22 additions and 13 deletions
6
INSTALL
6
INSTALL
|
|
@ -12,7 +12,8 @@ Install
|
|||
Requirements
|
||||
************
|
||||
|
||||
`django-downloadview` has been tested with Python version 2.7, 3.3 and 3.4.
|
||||
`django-downloadview` has been tested with `Python`_ 2.7, 3.3 and 3.4. Other
|
||||
versions may work, but they are not part of the test suite at the moment.
|
||||
|
||||
Installing `django-downloadview` will automatically trigger the installation of
|
||||
the following requirements:
|
||||
|
|
@ -83,6 +84,5 @@ You should get installed `django-downloadview`'s version.
|
|||
|
||||
.. target-notes::
|
||||
|
||||
.. _`Python`: https://www.python.org/
|
||||
.. _`pip`: https://pip.pypa.io/
|
||||
.. _`django-downloadview's bugtracker`:
|
||||
https://github.com/benoitbryon/django-downloadview/issues
|
||||
|
|
|
|||
11
MANIFEST.in
11
MANIFEST.in
|
|
@ -1,4 +1,9 @@
|
|||
recursive-include django_downloadview *
|
||||
global-exclude *.pyc .*.swp
|
||||
include *.txt
|
||||
include AUTHORS CHANGELOG CONTRIBUTING.rst INSTALL LICENSE README.rst VERSION
|
||||
global-exclude *.pyc
|
||||
include AUTHORS
|
||||
include CHANGELOG
|
||||
include CONTRIBUTING.rst
|
||||
include INSTALL
|
||||
include LICENSE
|
||||
include README.rst
|
||||
include VERSION
|
||||
|
|
|
|||
|
|
@ -120,4 +120,5 @@ NOSE_ARGS = [
|
|||
'--nocapture',
|
||||
'--all-modules',
|
||||
'--with-coverage',
|
||||
'--with-doctest',
|
||||
]
|
||||
|
|
|
|||
|
|
@ -15,8 +15,8 @@ README = open(os.path.join(here, 'README.rst')).read()
|
|||
VERSION = open(os.path.join(project_root, 'VERSION')).read().strip()
|
||||
AUTHOR = u'Benoît Bryon'
|
||||
EMAIL = u'benoit@marmelune.net'
|
||||
URL = 'https://{name}.readthedocs.org/'.format(name=NAME)
|
||||
CLASSIFIERS = ['Development Status :: 4 - Beta',
|
||||
URL = 'https://django-downloadview.readthedocs.org/'
|
||||
CLASSIFIERS = ['Development Status :: 5 - Production/Stable',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Framework :: Django']
|
||||
|
|
|
|||
13
setup.py
13
setup.py
|
|
@ -35,11 +35,14 @@ AUTHOR = u'Benoît Bryon'
|
|||
EMAIL = 'benoit@marmelune.net'
|
||||
LICENSE = 'BSD'
|
||||
URL = 'https://{name}.readthedocs.org/'.format(name=NAME)
|
||||
CLASSIFIERS = ['Development Status :: 5 - Production/Stable',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Framework :: Django']
|
||||
CLASSIFIERS = [
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Framework :: Django',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
]
|
||||
KEYWORDS = ['file',
|
||||
'stream',
|
||||
'download',
|
||||
|
|
|
|||
Loading…
Reference in a new issue