-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (44 loc) · 1.6 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from froxy.__about__ import __version__
from froxy.__about__ import __author__
from froxy.__about__ import __email__
with open('README.md', mode='r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='froxy',
version=__version__,
description='Hide your IP with free proxies using Froxy',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT License',
author=__author__,
author_email=__email__,
url='https://github.com/matheusfelipeog/froxy',
packages=find_packages(),
install_requires=['requests'],
zip_safe=False,
python_requires='>=3.6',
project_urls={
"Bug Tracker": "https://github.com/matheusfelipeog/froxy/issues",
"Documentation": "https://github.com/matheusfelipeog/froxy/blob/master/README.md",
"Source Code": "https://github.com/matheusfelipeog/froxy",
},
keywords=[
'froxy',
'ip', 'hide ip', 'requests',
'proxy', 'free proxy', 'proxy list',
'proxies', 'free proxies', 'proxies list'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)