-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
26 lines (24 loc) · 803 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-any',
version='0.2.0',
description='Unobtrusive test models creation for django.',
author='Mikhail Podgurskiy',
author_email='kmmbvnr@gmail.com',
url='http://github.com/kmmbvnr/django-any',
keywords = "django",
packages=['django_any', 'django_any.contrib', 'django_any.tests'],
include_package_data=True,
zip_safe=False,
license='MIT License',
platforms = ['any'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)