forked from kmmbvnr/django-any
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
36 lines (33 loc) · 1.08 KB
/
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
35
36
from os import path
import codecs
import os
from setuptools import setup
os.environ['DJANGO_SETTINGS_MODULE'] = "testproject.settings"
read = lambda filepath: codecs.open(filepath, 'r', 'utf-8').read()
setup(
name='django-whatever',
version=":versiontools:django_any:",
description='Unobtrusive test models creation for django.',
long_description=read(path.join(path.dirname(__file__), 'README.rst')),
author='Ilya Baryshev',
author_email='[email protected]',
url='http://github.com/coagulant/django-whatever',
packages=['django_any', 'django_any.contrib'],
include_package_data=True,
test_suite="tests.manage",
zip_safe=False,
setup_requires=[
'versiontools >= 1.8',
],
license='MIT License',
platforms=['any'],
classifiers=[
'Development Status :: 7 - Inactive',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)