-
Notifications
You must be signed in to change notification settings - Fork 33
/
setup.py
31 lines (29 loc) · 1.02 KB
/
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
29
30
31
import os
from pkg_resources import parse_requirements
from setuptools import setup
MY_DIR = os.path.dirname(__file__)
LONG_DESC = open(os.path.join(MY_DIR, 'README.rst')).read()
req_fh = open(os.path.join(MY_DIR, 'requirements.txt'))
install_requirements = [str(r) for r in parse_requirements(req_fh)]
req_fh.close()
setup(name='scrapy-kafka',
version='0.1.1',
description='Kafka-based components for Scrapy',
long_description=LONG_DESC,
author='Didier Deshommes',
author_email='[email protected]',
url='https://github.com/dfdeshom/scrapy-kafka',
packages=['scrapy_kafka'],
license='BSD',
install_requires=install_requirements,
extras_require={
"docs": ['sphinx'],
},
dependency_links=[
'https://github.com/mumrah/kafka-python/archive/v0.9.1.tar.gz#egg=kafka-python-0.9.1',
],
classifiers=[
'Programming Language :: Python',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
])