-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (31 loc) · 1.01 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
from setuptools import find_packages, setup
version = '8.0.0'
extras_require = {
'images': ['Pillow'],
}
setup(
name='incuna-test-utils',
packages=find_packages(exclude=['tests']),
include_package_data=True,
version=version,
description='Custom TestCases and other test helpers for Django apps',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Incuna',
author_email='[email protected]',
url='https://github.com/incuna/incuna-test-utils/',
install_requires=[],
extras_require=extras_require,
zip_safe=False,
license='BSD',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development :: Testing',
],
)