-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
36 lines (32 loc) · 1.03 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
"""The setup script."""
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
requirements = ["typer", "playwright", "appdirs", "empack >=3.0.0", "rich"]
setup(
author="Thorsten Beier",
author_email="[email protected]",
classifiers=[
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
include_package_data=True,
description="pyjs_code_runner emscripten+boa",
entry_points={
"console_scripts": [
"pyjs_code_runner=pyjs_code_runner.cli.app:app",
],
},
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
keywords="pyjs_code_runner",
name="pyjs_code_runner",
packages=find_packages(),
url="https://github.com/emscripten-forge/pyjs_code_runner",
version="2.0.0",
zip_safe=False,
)