diff options
| author | Justin Mayer <entroP@gmail.com> | 2016-09-11 17:00:58 -0600 |
|---|---|---|
| committer | Justin Mayer <entroP@gmail.com> | 2016-09-11 17:00:58 -0600 |
| commit | 470f0324422b4ea03d68b3977818a6b2f371e987 (patch) | |
| tree | 4ac4e624c3aeafcfba8c8fac06173ddfb692f504 /setup.py | |
| parent | 6f4c9dfa799303dc8e42ff8264669b10e3b8bf2d (diff) | |
| download | feedgenerator-470f0324422b4ea03d68b3977818a6b2f371e987.tar.gz | |
Fix setup.py shebang to improve portability
Also includes PyCodeStyle-compliant indentation fixes.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -#! /usr/bin/python +#!/usr/bin/env python # Using setuptools rather than distutils to get the `develop` command from setuptools import setup @@ -6,7 +6,7 @@ from setuptools import setup NAME = 'feedgenerator' PACKAGES = ['feedgenerator', 'feedgenerator.django', - 'feedgenerator.django.utils'] + 'feedgenerator.django.utils'] DESCRIPTION = 'Standalone version of django.utils.feedgenerator' LONG_DESCRIPTION = open('README.rst').read() @@ -26,7 +26,7 @@ CLASSIFIERS = ['Development Status :: 3 - Alpha', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Software Development :: Libraries :: Python Modules', -] + ] AUTHOR = 'Django Software Foundation' AUTHOR_EMAIL = 'foundation@djangoproject.com' |
