-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
18 lines (18 loc) · 835 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from distutils.core import setup
setup(name='scrapyapperyio',
version='0.1.3',
license='Apache License, Version 2.0',
description='Scrapy pipeline which allows you to store scrapy items in appery.io database.',
author='Dimitrios Kouzis-Loukas',
author_email='[email protected]',
url='http://github.com/scalingexcellence/scrapy-apperyio',
keywords="scrapy apperyio",
py_modules=['scrapyapperyio'],
platforms = ['Any'],
install_requires = ['scrapy'],
classifiers = [ 'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python']
)