File: setup.py

package info (click to toggle)
python-scrapy-djangoitem 1.1.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 160 kB
  • sloc: python: 169; sh: 6; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 1,192 bytes parent folder | download
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
29
30
31
32
33
34
from setuptools import setup, find_packages

import io

setup(
    name='scrapy-djangoitem',
    version='1.1.1',
    url='https://github.com/scrapy-plugins/scrapy-djangoitem',
    description='Scrapy extension to write scraped items using Django models',
    long_description=io.open('README.rst', encoding='utf-8').read(),
    author='Scrapy developers',
    license='BSD',
    packages=find_packages(exclude=('tests', 'tests.*')),
    include_package_data=True,
    zip_safe=False,
    classifiers=[
        'Framework :: Scrapy',
        'Development Status :: 5 - Production/Stable',
        'Environment :: Console',
        'Intended Audience :: Developers',
        '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.4',
        'Programming Language :: Python :: 3.5',
        'Topic :: Utilities',
        'Framework :: Django',
        'Framework :: Scrapy',
    ],
    requires=['scrapy (>=0.24.5)', 'django'],
)