~ubuntuone-pqm-team/gargoyle/stable

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: David Cramer
  • Date: 2012-03-02 00:46:24 UTC
  • Revision ID: git-v1:fdddb8230d3f27c9bdc32834f57e08d657dd6e99
Tags: 0.7.3
Bump ModelDict version and include Travis

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
 
try:
4
 
    from setuptools import setup, find_packages
5
 
except ImportError:
6
 
    from ez_setup import use_setuptools
7
 
    use_setuptools()
8
 
    from setuptools import setup, find_packages
 
3
from setuptools import setup, find_packages
9
4
 
10
5
tests_require = [
11
6
    'Django>=1.1',
16
11
 
17
12
setup(
18
13
    name='gargoyle',
19
 
    version='0.7.2',
 
14
    version='0.7.3',
20
15
    author='DISQUS',
21
16
    author_email='opensource@disqus.com',
22
17
    url='http://github.com/disqus/gargoyle',
24
19
    packages=find_packages(exclude=["example_project", "tests"]),
25
20
    zip_safe=False,
26
21
    install_requires=[
27
 
        'django-modeldict>=1.1.6',
 
22
        'django-modeldict>=1.2.0',
28
23
        'nexus>=0.2.3',
29
24
        'django-jsonfield==0.6',
30
25
    ],