forked from davedash/django-fixture-magic
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
25 lines (23 loc) · 839 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from setuptools import setup, find_packages
setup(
name='django-fixture-magic',
version='0.1.4',
description='A few extra management tools to handle fixtures.',
long_description=open('README.rst').read(),
author='Dave Dash',
author_email='[email protected]',
url='http://github.com/davedash/django-fixture-magic',
license='BSD',
packages=find_packages(exclude=['tests']),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)