forked from sunscrapers/djet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 909 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
import codecs
from setuptools import setup
setup(
name='djet',
version='0.2.2',
description='Set of helpers for easy testing of Django apps.',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
license='MIT',
author='SUNSCRAPERS',
author_email='info@sunscrapers.com',
packages=['djet'],
url='https://github.com/sunscrapers/djet',
install_requires=[],
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Testing'
]
)