-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 803 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 803 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
setup(
name='scrapy-magicfields',
version='1.1.0',
license='BSD',
description='Scrapy middleware to add extra "magic" fields to items',
author='Scrapinghub',
author_email='info@scrapinghub.com',
url='http://github.com/scrapy-plugins/scrapy-magicfields',
packages=['scrapy_magicfields'],
platforms=['Any'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
install_requires=['scrapy']
)