forked from getsentry/raven-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,26 +20,46 @@ | |
except ImportError: | ||
pass | ||
|
||
import os.path | ||
from setuptools import setup, find_packages | ||
|
||
tests_require = open(os.path.join( | ||
os.path.dirname(__file__), 'test-requirements.txt'), | ||
).readlines() | ||
dev_requires = [ | ||
'flake8>=1.6', | ||
] | ||
|
||
tests_require = [ | ||
'blinker>=1.1', | ||
'celery>=2.5', | ||
'Django>=1.2', | ||
'django-celery>=2.5', | ||
'exam>=0.5.2', | ||
'Flask>=0.8', | ||
'logbook', | ||
'mock', | ||
'nose', | ||
'pep8', | ||
'pytz', | ||
'pytest', | ||
'pytest-django', | ||
'tornado', | ||
'unittest2', | ||
'webob', | ||
] | ||
|
||
|
||
setup( | ||
name='raven', | ||
version='3.1.13', | ||
version='3.1.14', | ||
author='David Cramer', | ||
author_email='[email protected]', | ||
url='http://github.com/getsentry/raven-python', | ||
description='Raven is a client for Sentry (https://www.getsentry.com)', | ||
long_description=__doc__, | ||
packages=find_packages(exclude=("tests",)), | ||
zip_safe=False, | ||
tests_require=tests_require, | ||
extras_require={'test': tests_require}, | ||
extras_require={ | ||
'tests': tests_require, | ||
'dev': dev_requires, | ||
}, | ||
test_suite='runtests.runtests', | ||
include_package_data=True, | ||
entry_points={ | ||
|
This file was deleted.
Oops, something went wrong.