forked from valohai/django-safespace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 747 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
import setuptools
dev_dependencies = [
'flake8',
'isort',
'pydocstyle',
'pytest-cov',
'pytest-django>=3.0.0',
]
if __name__ == '__main__':
setuptools.setup(
name='django-safespace',
description='Exception catching and handling middleware for Django',
version='0.2.0',
url='https://github.com/valohai/django-safespace',
author='Valohai',
maintainer='Aarni Koskela',
maintainer_email='[email protected]',
license='MIT',
install_requires=['Django'],
tests_require=dev_dependencies,
extras_require={'dev': dev_dependencies},
packages=setuptools.find_packages('.', exclude=('safespace_tests',)),
include_package_data=True,
)