mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
2081e7a8ff
* chore: Add examples on how to deploy private registries * chore: example for private pypiserver with https * Allow DENO_CERT certificate with native workers * Add BUN_TLS_REJECT_UNAUTHORIZED
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
import os
|
|
|
|
import setuptools
|
|
|
|
module_path = os.path.join(os.path.dirname(__file__), "windmill_helloworld.py")
|
|
|
|
setuptools.setup(
|
|
name="windmill-helloworld",
|
|
version="0.0.1",
|
|
url="https://github.com/windmill-labs/windmill/blob/exit()/examples/deploy/private-npm-registry-tls/README.md",
|
|
author="WindmillLabs",
|
|
author_email="contact@windmill.dev",
|
|
description="Simple hello world python module to host on a private Pypi server",
|
|
long_description=open("README.md").read(),
|
|
py_modules=["helloworld_python_module"],
|
|
zip_safe=False,
|
|
platforms="any",
|
|
install_requires=[],
|
|
classifiers=[
|
|
"Development Status :: 2 - Pre-Alpha",
|
|
"Environment :: Web Environment",
|
|
"Intended Audience :: Developers",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.3",
|
|
],
|
|
)
|