forked from coagulant/django-whatever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.45 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
37
38
39
40
41
42
43
44
45
46
47
48
import codecs
import os
from os import path
from setuptools import setup
os.environ['DJANGO_SETTINGS_MODULE'] = "testproject.settings"
def read(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='Sergey Fursov',
author_email='[email protected]',
url='http://github.com/ivelum/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 :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Topic :: Software Development :: Testing :: Mocking',
]
)