-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
32 lines (32 loc) · 1.2 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
from distutils.core import setup
setup(
name = 'fastProxy',
packages = ['fastProxy'],
version = '1.0.0',
license='MIT',
description = 'Fast and reliable proxy scraper with comprehensive validation and logging',
author = '1UC1F3R616',
author_email = '[email protected]',
url = 'https://github.com/1UC1F3R616/fastProxy',
download_url = 'https://github.com/1UC1F3R616/fastProxy/archive/v_1.0.0.tar.gz',
keywords = ['proxy', 'free', 'threaded', 'python3', 'logging', 'validation'],
install_requires=[
'bs4',
'requests',
'fire',
'pytest',
'pytest-cov',
],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
)