forked from sorl/django-mockups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 823 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
from setuptools import setup, find_packages
setup(
name = 'django-mockups',
version = '0.4.8',
description = 'Provides tools to auto generate content.',
long_description = open('README.rst').read(),
author = 'Mikko Hellsing',
author_email = 'mikko@aino.se',
url = 'https://github.com/sorl/django-mockups',
license = 'BSD',
platforms='any',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)