forked from iamcryptoki/crawlyn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (30 loc) · 895 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (30 loc) · 895 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
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import crawlyn
from setuptools import setup
setup(
name='crawlyn',
version=crawlyn.__version__,
description="Experimental crawler to grab data from websites.",
long_description=open('README.txt').read(),
author='Galou Gentil',
author_email='hello@cryptoki.fr',
url='https://github.com/iamcryptoki/crawlyn',
license='MIT',
keywords='crawler, email, links, security, website',
packages=['crawlyn'],
package_data={
'crawlyn' : [
'bin/phantomjs/linux/32/phantomjs',
'bin/phantomjs/linux/64/phantomjs',
'bin/phantomjs/macos/phantomjs',
'bin/phantomjs/windows/phantomjs.exe'
]
},
install_requires=['docopt', 'lxml', 'selenium'],
entry_points={
'console_scripts': [
'crawlyn=crawlyn.cli:main',
]
}
)