Skip to content

Commit

Permalink
add an AUTHORS file and update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
smn committed Jun 24, 2015
1 parent 4bbbc40 commit ec9f970
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Romain Garrigues <romain.garrigues.cs@gmail.com>
Simon de Haan <simon@praekeltfoundation.org>
26 changes: 14 additions & 12 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
from setuptools import setup, find_packages


def listify(filename):
return [line for line in open(filename, 'r').read().split('\n') if line]


setup(
name = "django-dirtyfields",
version = "0.7",
url = 'http://github.com/smn/django-dirtyfields',
license = 'BSD',
description = "Tracking dirty fields on a Django model instance (actively maintained)",
long_description = open('README.rst','r').read(),
author = 'Simon de Haan',
packages = find_packages('src'),
package_dir = {'': 'src'},
install_requires = listify('requirements.txt'),
classifiers = listify('CLASSIFIERS.txt')
name="django-dirtyfields",
version="0.7",
url='http://github.com/romgar/django-dirtyfields',
license='BSD',
description=("Tracking dirty fields on a Django model instance "
"(actively maintained)"),
long_description=open('README.rst', 'r').read(),
author='Romain Garrigues',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=listify('requirements.txt'),
classifiers=listify('CLASSIFIERS.txt')
)

0 comments on commit ec9f970

Please sign in to comment.