|
1 | | -#!/usr/bin/env python |
2 | | - |
3 | | -"""The setup script.""" |
4 | | -from setuptools import find_packages, setup |
5 | | - |
6 | | -with open("README.md") as readme_file: |
7 | | - readme = readme_file.read() |
8 | | - |
9 | | -requirements = ["typer", "playwright", "appdirs", "empack >=3.0.0", "rich"] |
10 | | - |
11 | | -setup( |
12 | | - author="Thorsten Beier", |
13 | | - author_email="derthorstenbeier@gmail.com", |
14 | | - classifiers=[ |
15 | | - "Intended Audience :: Developers", |
16 | | - "Natural Language :: English", |
17 | | - "Programming Language :: Python :: 3.10", |
18 | | - "Programming Language :: Python :: 3.11", |
19 | | - ], |
20 | | - include_package_data=True, |
21 | | - description="pyjs_code_runner emscripten+boa", |
22 | | - entry_points={ |
23 | | - "console_scripts": [ |
24 | | - "pyjs_code_runner=pyjs_code_runner.cli.main:app", |
25 | | - ], |
26 | | - }, |
27 | | - install_requires=requirements, |
28 | | - long_description=readme, |
29 | | - long_description_content_type="text/markdown", |
30 | | - keywords="pyjs_code_runner", |
31 | | - name="pyjs_code_runner", |
32 | | - packages=find_packages(), |
33 | | - url="https://github.com/emscripten-forge/pyjs_code_runner", |
34 | | - version="2.0.0", |
35 | | - zip_safe=False, |
36 | | -) |
| 1 | +# setup.py shim for use with applications that require it. |
| 2 | +__import__("setuptools").setup() |
0 commit comments