Skip to content

Commit

Permalink
Improved contributor experience by adding setuptools option to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Greenfeld committed Oct 11, 2014
1 parent 57177fa commit 38b3531
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ demo/db.sql
dist/
db.sqlite3
.DS_STORE
build
django_filepicker.egg-info
27 changes: 17 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
from distutils.core import setup
setup(name='django-filepicker',
version='0.2.1',
description='Official Filepicker Django Library',
author='Filepicker.io',
author_email='contact@filepicker.io',
url='http://developers.filepicker.io/',
packages=['django_filepicker'],
install_requires=['django >= 1.3','requests']
)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup

setup(
name='django-filepicker',
version='0.2.1',
description='Official Filepicker Django Library',
author='Filepicker.io',
author_email='contact@filepicker.io',
url='http://developers.filepicker.io/',
packages=['django_filepicker'],
install_requires=['django >= 1.3','requests'],
license="BSD",
zip_safe=False,
)

0 comments on commit 38b3531

Please sign in to comment.