forked from leetrout/django-fixturemedia
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (31 loc) · 996 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
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from distutils.core import setup
long_description = """
Simple tool to manage media files for fixtures.
See the repo home for usage instructions at
https://github.com/leetrout/django-fixturemedia/
"""
setup(
name='django-fixture-media',
version='0.1.4',
description='Simple tool to manage media files for fixtures.',
long_description=long_description,
author='Lee Trout',
author_email='leetrout@gmail.com',
url='https://github.com/leetrout/django-fixturemedia/',
packages=[
'fixture_media',
'fixture_media.management',
'fixture_media.management.commands'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
zip_safe=False,
)