Browse Source

Format setup.py

Denis K 9 years ago
parent
commit
1c2f58a3c6
1 changed files with 8 additions and 7 deletions
  1. 8 7
      setup.py

+ 8 - 7
setup.py

@@ -1,19 +1,20 @@
 import os
 from setuptools import setup, find_packages 
 
+
 def read(fname):
     return open(os.path.join(os.path.dirname(__file__), fname)).read()
 
 setup(
-    name = 'django-jet',
-    version = __import__('jet').VERSION,
-    description = 'Modern template for Django admin interface with improved functionality',
+    name='django-jet',
+    version=__import__('jet').VERSION,
+    description='Modern template for Django admin interface with improved functionality',
     long_description=read('README.rst'),
-    author = 'Denis Kildishev',
-    author_email = 'support@jet.geex-arts.com',
-    url = 'https://github.com/geex-arts/jet',
+    author='Denis Kildishev',
+    author_email='support@jet.geex-arts.com',
+    url='https://github.com/geex-arts/jet',
     packages=find_packages(),
-    classifiers = [
+    classifiers=[
         'Development Status :: 4 - Beta',
         'Framework :: Django',
         'License :: Free for non-commercial use',