-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathsetup.py
33 lines (32 loc) · 1.13 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
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
setup(
name='looter',
version='2.21',
description=
('A python package aiming at avoiding unnecessary repetition in making common crawlers.'
),
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='alphardex',
author_email='[email protected]',
python_requires='>=3.6.0',
license='MIT',
packages=find_packages(),
include_package_data=True,
platforms=["all"],
url='https://github.com/alphardex/looter',
py_modules=['looter'],
classifiers=[
'Development Status :: 3 - Alpha', "Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6', "Topic :: Internet",
"Topic :: Internet :: WWW/HTTP", "Topic :: Utilities"
],
entry_points={'console_scripts': [
'looter = looter.__init__:cli',
]},
install_requires=['requests', 'docopt', 'parsel', 'aiohttp', 'tqdm'])