forked from lukemaxwell/proxytools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·44 lines (39 loc) · 1.07 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='proxytools',
version='0.0.1',
description='Search and test public web proxies',
long_description=readme,
author='Luke Maxwell',
author_email='[email protected]',
url='https://github.com/lukemaxwell/proxytools',
license=license,
packages=['proxytools'],
entry_points = {
'console_scripts': ['proxytools=proxytools.cli:cli'],
},
install_requires=[
'asyncio',
'beautifulsoup4', # required for pandas.read_html
'click',
'html5lib', # required for pandas.read_html
'inscriptis',
'lxml',
'numpy',
'pandas',
'pyppeteer',
'requests',
'yarl',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# packages=find_packages(exclude=('tests', 'docs'))
)