mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 07:08:10 +00:00
fix version sourcing in setup.py
This commit is contained in:
parent
782c66eac2
commit
00ae4d3f6e
@ -1,3 +1,3 @@
|
|||||||
# https://github.com/mitmproxy/mitmproxy/issues/1809
|
# https://github.com/mitmproxy/mitmproxy/issues/1809
|
||||||
# import script here so that pyinstaller registers it.
|
# import script here so that pyinstaller registers it.
|
||||||
from . import script
|
from . import script # noqa
|
||||||
|
10
setup.py
10
setup.py
@ -1,8 +1,8 @@
|
|||||||
from setuptools import setup, find_packages
|
|
||||||
from codecs import open
|
|
||||||
import os
|
import os
|
||||||
|
import runpy
|
||||||
|
from codecs import open
|
||||||
|
|
||||||
from mitmproxy import version
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
# Based on https://github.com/pypa/sampleproject/blob/master/setup.py
|
# Based on https://github.com/pypa/sampleproject/blob/master/setup.py
|
||||||
# and https://python-packaging-user-guide.readthedocs.org/
|
# and https://python-packaging-user-guide.readthedocs.org/
|
||||||
@ -12,9 +12,11 @@ here = os.path.abspath(os.path.dirname(__file__))
|
|||||||
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
|
with open(os.path.join(here, 'README.rst'), encoding='utf-8') as f:
|
||||||
long_description = f.read()
|
long_description = f.read()
|
||||||
|
|
||||||
|
VERSION = runpy.run_path(os.path.join(here, "mitmproxy", "version.py"))["VERSION"]
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="mitmproxy",
|
name="mitmproxy",
|
||||||
version=version.VERSION,
|
version=VERSION,
|
||||||
description="An interactive, SSL-capable, man-in-the-middle HTTP proxy for penetration testers and software developers.",
|
description="An interactive, SSL-capable, man-in-the-middle HTTP proxy for penetration testers and software developers.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
url="http://mitmproxy.org",
|
url="http://mitmproxy.org",
|
||||||
|
Loading…
Reference in New Issue
Block a user