Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Corrected trove classifiers for Python version support.Tim Graham2015-08-171-1/+1
|
* Updated trove classifier to Pre-Alpha.Tim Graham2015-02-251-1/+1
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+2
|
* Removed compatibility with Python 3.2.Tim Graham2015-01-171-1/+0
|
* Include an 'extra_requires' for bcryptAlex Gaynor2014-04-171-0/+3
|
* Added Python 3.4 to classifiers in setup.py.Berker Peksag2014-03-301-0/+1
|
* Fixed #21827 -- Install django-admin and django-admin.pyFlorian Apolloner2014-01-211-1/+2
| | | | | We need to figure out how to deprecate django-admin.py, but for now this should do the trick.
* Changed django-admin back to django-admin.py. Refs #21827Florian Apolloner2014-01-211-1/+1
|
* Changed setup.py to use find_packages.Florian Apolloner2013-12-311-51/+3
|
* Switched setup.py to setuptools.Florian Apolloner2013-12-271-2/+6
|
* Bumped minimum Python version requirement to 2.7 in ↵Aymeric Augustin2013-07-011-1/+0
| | | | Django 1.7.
* Fixed #20615 -- Added trove classifiers for major Python ↵Aymeric Augustin2013-06-181-0/+2
| | | | versions.
* Bumped verion numbers for 1.6a1.Jacob Kaplan-Moss2013-06-061-1/+1
|
* Fixed #19252 -- Added support for wheel packages.Florian Apolloner2013-05-011-51/+45
| | | | Signed-off-by: Jannis Leidel <jannis@leidel.info>
* Remove download_url from setup.pyDonald Stufft2013-04-041-1/+0
| | | | | | | | * Prevents issues with moving download locations in the future, see https://www.djangoproject.com/m/bad-installer.txt * Removes a location that release managers need to update with a new version * Very little use when files are hosted on PyPI (as Django's are)
* Adjusted download_url in setup.pyFlorian Apolloner2013-04-031-1/+1
|
* Fixed setup.py overlaid-install warning.Carl Meyer2013-03-291-3/+6
| | | | | | | Before this change, if you had a global Django installation in /usr/local/, you might get a spurious warning when installing Django within a virtualenv. Thanks epicserve for the report and debugging help.
* Added Python 3.2/3.3 trove classifiers in setup.pyClaude Paroz2013-02-261-0/+2
|
* Sorry, accidental commit, Thanks claudep for catching it!Honza Kral2013-02-241-1/+1
|
* Fixed #18491 -- deleting a proxy doesn't show warning ↵Honza Kral2013-02-231-1/+1
| | | | about cascade deletes
* Fix filtering during collection of paths in setup.pyRamiro Morales2013-02-151-3/+1
| | | | Thanks Marek Brzóska for the report.
* Added 'license' value to the setup.py fixes #19430Pablo Recio2012-12-141-0/+1
|
* Ensure we ignore __pycache__ PEP 3174 dirs in a few more ↵Ramiro Morales2012-10-061-2/+3
| | | | places.
* Fixed #18115 - added warning about overlaid install.Carl Meyer2012-05-221-0/+36
| | | | | | | | | | Setup.py now warns if it detects that Django is being installed over top of a previous installation that was never removed. This should only happen when installing with ``python setup.py install``, as pip automatically uninstalls before installing a new version and easy_install installs as an egg directory. Also generally updated the installation doc.
* Fixed #17965 -- Definitely dropped support for Python ↵Claude Paroz2012-03-311-1/+0
| | | | | | 2.5. Thanks jonash for the initial patch and Aymeric Augustin for the review. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17834 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump trunk to 1.4.James Bennett2012-03-231-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17799 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump trunk to 1.4 RC 2.James Bennett2012-03-151-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17740 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Correct the download URL.James Bennett2012-03-051-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17672 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump for 1.4 RC 1.James Bennett2012-03-051-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17671 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17832 -- Missing negation in a comment. Thanks mk ↵Aymeric Augustin2012-03-051-1/+1
| | | | | | for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17667 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed download URL in setup.py.Jannis Leidel2012-02-161-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17534 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Accommodate new version numbering scheme.James Bennett2012-02-161-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17532 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump version numbers for 1.4 beta 1.James Bennett2012-02-161-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17531 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Implemented PEP386-compatible version numbers. Thanks ↵Aymeric Augustin2012-01-081-1/+1
| | | | | | Jannis for the guidance. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17357 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17491 -- Honored the version number format ↵Aymeric Augustin2012-01-071-8/+6
| | | | | | expected by distutils. Fixed #11236 too. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17351 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Also we use HTTPS now.James Bennett2011-12-231-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17257 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Missed one.James Bennett2011-12-231-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17256 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump to 1.4 alpha 1.James Bennett2011-12-231-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@17255 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Changed setup.py classifiers to use a better indentation ↵Adrian Holovaty2011-03-281-16/+17
| | | | | | style git-svn-id: http://code.djangoproject.com/svn/django/trunk@15929 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed Python 2.4 classifier from setup.pyAdrian Holovaty2011-03-281-1/+0
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15928 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump everything for 1.3.James Bennett2011-03-231-2/+2
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15902 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Added trove classifiers for specific python versions. ↵Russell Keith-Magee2011-03-051-0/+4
| | | | | | Thanks to Brett Cannon for the suggestion. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump trunk to 1.3 release candidate status.James Bennett2011-03-041-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15755 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Update download_url for beta.James Bennett2010-12-231-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15041 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Trunk is now 1.3 beta 1.James Bennett2010-12-231-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@15040 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Change development-status classifier in setup.py since ↵James Bennett2010-11-111-1/+1
| | | | | | this is an alpha. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14520 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump version number and download URL for 1.3 alpha 1.James Bennett2010-11-111-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@14519 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump to 1.2.1.James Bennett2010-05-241-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13302 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Flip PyPI classifier from beta to stable.James Bennett2010-05-171-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13279 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Bump version and download info to 1.2.James Bennett2010-05-171-1/+1
| | | | git-svn-id: http://code.djangoproject.com/svn/django/trunk@13276 bcc190cf-cafb-0310-a4f2-bffc1f526a37