dash-player/setup.py
2022-10-12 17:04:55 -04:00

21 lines
513 B
Python

import json
import os
from setuptools import setup
with open(os.path.join("dash_player", "package.json")) as f:
package = json.load(f)
package_name = package["name"].replace("@plotly/", "").replace("-", "_")
setup(
name=package_name,
version=package["version"],
author=package["author"],
packages=[package_name],
include_package_data=True,
license=package["license"],
description=package["description"] if "description" in package else package_name,
install_requires=[],
)