forked from pyjobs/crawlers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (25 loc) · 796 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pyjobs_crawlers
setup(
name='pyjobs_crawler',
version='0.0.1',
packages=find_packages(),
install_requires=['Scrapy==1.0.4',
'fasteners==0.14.1',
'python-slugify==1.1.4',
'feedparser==5.2.1'],
author='Damien Accorsi',
author_email="[email protected]",
description='Pyjobs crawlers',
long_description='',
include_package_data=True,
url='https://github.com/pyjobs/crawlers',
classifiers=[
"Programming Language :: Python",
"Development Status :: 3 - Alpha",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7"
]
)