Skip to content

Commit

Permalink
update setup to use more generic configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
danaspiegel committed Sep 23, 2016
1 parent 4611a33 commit df41bd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import re
import os
from setuptools import setup
from setuptools import setup, find_packages


with open('cryptographic_fields/__init__.py', 'r') as init_file:
Expand All @@ -19,7 +19,7 @@
setup(
name='django-cryptographic-fields',
version=version,
packages=['cryptographic_fields'],
packages=find_packages(),
license='MIT',
include_package_data=True,
description=(
Expand Down

0 comments on commit df41bd7

Please sign in to comment.