-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
77 lines (71 loc) · 2.49 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import codecs
import re
from setuptools import setup
# https://packaging.python.org/en/latest/distributing/
with codecs.open('proxyhub/__init__.py', mode='r', encoding='utf-8') as f:
INFO = dict(re.findall(r"__(\w+)__ = '([^']+)'", f.read(), re.MULTILINE))
with codecs.open('README.md', mode='r', encoding='utf-8') as f:
INFO['long_description'] = f.read()
# INFO['long_description'] = 'ProxyHub is an open source tool that asynchronously finds public proxies from multiple sources and concurrently checks them.'
REQUIRES = [
'aiohttp>=3.5.4',
'aiodns>=2.0.0',
'attrs==19.3.0',
'maxminddb>=1.4.1',
'cachetools==4.1.0',
]
SETUP_REQUIRES = ['pytest-runner>=4.4']
TEST_REQUIRES = [
# 'black>=18.9-beta.0',
'flake8>=3.7',
'isort>=4.3',
'pytest>=4.3',
'pytest-asyncio>=0.10',
'pytest-runner>=4.4',
'pytest-isort>=0.3',
'pytest-flake8>=1.0',
'pytest-mock>=1.10.1',
]
PACKAGES = ['proxyhub', 'proxyhub.data']
PACKAGE_DATA = {'': ['LICENSE'], INFO['package']: ['data/*.mmdb']}
setup(
name=INFO['package'],
version=INFO['version'],
description=INFO['short_description'],
long_description=INFO['long_description'],
long_description_content_type='text/markdown',
author=INFO['author'],
author_email=INFO['author_email'],
license=INFO['license'],
url=INFO['url'],
install_requires=REQUIRES,
setup_requires=SETUP_REQUIRES,
tests_require=TEST_REQUIRES,
packages=PACKAGES,
package_data=PACKAGE_DATA,
platforms='any',
python_requires='>=3.5.3',
entry_points={'console_scripts': ['proxyhub = proxyhub.cli:cli']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Internet :: Proxy Servers',
'License :: OSI Approved :: Apache Software License',
],
keywords=(
'proxy finder grabber scraper parser graber scrapper checker '
'broker async asynchronous http https connect socks socks4 socks5'
),
zip_safe=False,
test_suite='tests',
)