-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·51 lines (45 loc) · 1.36 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python3
"""aio_crawler project setup."""
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
README = f.read()
REQUIREMENTS = [
'aiohttp==0.22.5',
'cchardet==1.0.0',
'click==6.6',
]
TEST_REQUIREMENTS = [
'pylama==7.0.9',
'pytest==2.9.2',
]
setup(
name='aio_crawler',
version='0.0.1',
description='AIO website crawler',
long_description=README,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
],
keywords='aio crawler web spider',
author='Michał Pawłowski',
author_email='@'.join(['unittestablecode', 'gmail.com']),
license='MIT',
packages=find_packages(exclude=['test']),
install_requires=REQUIREMENTS,
tests_require=TEST_REQUIREMENTS,
extras_require={'tests': TEST_REQUIREMENTS},
cmdclass={},
entry_points={
'console_scripts': 'aio_crawler=aio_crawler.cli:cli_entry'
},
)