-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (23 loc) · 806 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
#!/usr/bin/env python
from setuptools import setup, find_packages
VERSION = '0.2'
with open('README.md') as readme:
long_description = readme.read()
setup(
name='sentry-scrapy',
version=VERSION,
description='Scrapy integration with Sentry SDK (unofficial)',
long_description=long_description,
long_description_content_type='text/markdown',
author='Maxime Vdb',
author_email='[email protected]',
packages=find_packages(),
install_requires=['Scrapy', 'sentry-sdk'],
license="MIT",
keywords="sentry scrapy sdk integration",
url='https://github.com/m-vdb/sentry-scrapy',
download_url='https://github.com/m-vdb/sentry-scrapy/archive/v{}.tar.gz'.format(VERSION),
project_urls={
"Source Code": "https://github.com/m-vdb/sentry-scrapy",
}
)