Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
67 lines (54 sloc)
2.06 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import setuptools.command.build_py | |
import subprocess | |
import os | |
from setuptools import find_packages, setup | |
class build_ui(setuptools.Command): | |
user_options = [] | |
def initialize_options(self): | |
pass | |
def finalize_options(self): | |
pass | |
def run(self): | |
subprocess.call(["npm", "install"], cwd="./confusionflow/ui") | |
subprocess.call(["npm", "run", "build"], cwd="./confusionflow/ui") | |
subprocess.call( | |
["cp", "-r", "./confusionflow/ui/build", "./confusionflow/static"] | |
) | |
class build_py(setuptools.command.build_py.build_py): | |
def run(self): | |
if not os.path.exists("./confusionflow/static"): | |
self.run_command("build_ui") | |
setuptools.command.build_py.build_py.run(self) | |
# get __version__ | |
pkg_info = {} | |
here = os.path.abspath(os.path.dirname(__file__)) | |
exec(open(os.path.join(here, "confusionflow", "_version.py")).read(), pkg_info) | |
requirements = {"install": [["flask", "gevent", "pyyaml"]]} | |
install_requires = requirements["install"] | |
setup_kwargs = dict( | |
name="confusionflow", | |
version=pkg_info["__version__"], | |
author="ConfusionFlow Contributors", | |
author_email="gfrogat@gmail.com", | |
url="https://github.com/confusionflow/confusionflow", | |
license="BSD-3-Clause", | |
description=( | |
"ConfusionFlow is a visualization tool that enables more " | |
"nuanced monitoring of a neural network's training process." | |
), | |
long_description=open("README.md").read(), | |
long_description_content_type="text/markdown", | |
project_urls={ | |
"Documentation": "https://docs.confusionflow.org", | |
"Source": "https://github.com/confusionflow/confusionflow/", | |
"Tracker": "https://github.com/confusionflow/confusionflow/issues", | |
}, | |
cmdclass={"build_py": build_py, "build_ui": build_ui}, | |
packages=find_packages(), | |
package_data={"confusionflow": ["static/*.*"]}, | |
include_package_data=True, | |
zip_safe=False, | |
install_requires=install_requires, | |
entry_points={"console_scripts": ["confusionflow=confusionflow:main"]}, | |
) | |
setup(**setup_kwargs) |