Skip to content

Commit 08bfb85

Browse files
Merge pull request #3 from ForceFledgling/dev
update: changes for PyPI
2 parents f4cbf73 + 9feb747 commit 08bfb85

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

proxyhub/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
__title__ = 'proxyhub'
1818
__package__ = 'proxyhub'
19-
__version__ = '0.0.1'
19+
__version__ = '0.0.1a1'
2020
__short_description__ = 'An advanced [Finder | Checker | Server] tool for proxy servers, supporting both HTTP(S) and SOCKS protocols.'
2121
__author__ = 'ForceFledgling'
2222
__author_email__ = '[email protected]'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[tool.poetry]
33
name = "proxyhub"
4-
version = "0.0.1-alpha"
4+
version = "0.0.1-alpha1"
55
description = "An advanced [Finder | Checker | Server] tool for proxy servers, supporting both HTTP(S) and SOCKS protocols."
66
authors = ["ForceFledgling - Din Grogu <[email protected]>"]
77
repository = "https://github.com/ForceFledgling/proxyhub"

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
with codecs.open('proxyhub/__init__.py', mode='r', encoding='utf-8') as f:
99
INFO = dict(re.findall(r"__(\w+)__ = '([^']+)'", f.read(), re.MULTILINE))
1010

11-
with codecs.open('README.md', mode='r', encoding='utf-8') as f:
12-
INFO['long_description'] = f.read()
11+
# with codecs.open('README.md', mode='r', encoding='utf-8') as f:
12+
# INFO['long_description'] = f.read()
13+
INFO['long_description'] = 'ProxyHub is an open source tool that asynchronously finds public proxies from multiple sources and concurrently checks them.'
1314

1415
REQUIRES = [
1516
'aiohttp>=3.5.4',
@@ -49,6 +50,7 @@
4950
package_data=PACKAGE_DATA,
5051
platforms='any',
5152
python_requires='>=3.5.3',
53+
entry_points={'console_scripts': ['proxyhub = proxyhub.cli:cli']},
5254
classifiers=[
5355
'Development Status :: 5 - Production/Stable',
5456
'Environment :: Console',

0 commit comments

Comments
 (0)