-
Notifications
You must be signed in to change notification settings - Fork 55
/
setup.py
46 lines (42 loc) · 1.55 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
with open(path.join(here, 'proxyscrape/VERSION'), 'rb') as f:
version = f.read().decode('ascii').strip()
setup(
name='proxyscrape',
version=version,
description='A library for retrieving free proxies (HTTP, HTTPS, SOCKS4, SOCKS5).',
long_description=long_description,
url='https://github.com/jaredlgillespie/proxyscrape',
author='Jared Gillespie',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
],
keywords='proxyscrape proxy scrape scraper',
packages=['proxyscrape'],
include_package_data=True,
test_suite='tests',
install_requires=[
'BeautifulSoup4',
'requests',
]
)