Skip to content

Commit

Permalink
Fix issues with setuptools config.
Browse files Browse the repository at this point in the history
  • Loading branch information
mattiaslinnap committed Aug 5, 2017
1 parent ffedda2 commit 1ef48d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
[metadata]
description-file = README.md

[bdist_wheel]
universal=1
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
#!/usr/bin/env python

try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from setuptools import setup, find_packages


setup(
name='django-partial-index',
packages=['partial_index'],
version='0.1.0',
description='PostgreSQL partial indexes for Django',
long_description=open("README.md").read(),
long_description=open('README.md').read(),
author='Mattias Linnap',
author_email='[email protected]',
url='https://github.com/mattiaslinnap/django-partial-index',
Expand Down

0 comments on commit 1ef48d6

Please sign in to comment.