-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (21 loc) · 764 Bytes
/
setup.py
File metadata and controls
27 lines (21 loc) · 764 Bytes
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
from distutils.core import setup
import setuptools
def setup_package():
from pyodide_http import __version__
setup(
name="pyodide_http",
version=__version__,
author="Koen Vossen",
author_email="info@koenvossen.nl",
url="https://github.com/koenvo/pyodide-http",
packages=setuptools.find_packages(exclude=["tests"]),
license="MIT",
description="Patch requests, urllib and urllib3 to make them work in Pyodide",
long_description="Patch requests, urllib and urllib3 to make them work in Pyodide",
long_description_content_type="text/markdown",
classifiers=[],
install_requires=[],
ext_modules=[],
)
if __name__ == "__main__":
setup_package()