-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 793 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (22 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
import sys, os
version = '0.4.2'
setup(name='pyramid_crow',
version=version,
description="http context compliant automatic raven integration for pyramid",
long_description=open('README.rst').read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='',
author='Nicholas Pilon',
author_email='npilon@gmail.com',
url='https://github.com/npilon/pyramid_crow',
license='Apache 2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=True,
install_requires=[
# -*- Extra requirements: -*-
'pyramid>=1.2dev',
'raven>=5.20.0',
],
)