This commit is contained in:
Peter Williams 2020-10-17 12:39:52 -04:00
Родитель 87069fceb0
Коммит a938e74930
4 изменённых файлов: 32 добавлений и 28 удалений

Просмотреть файл

@ -1,42 +1,42 @@
{ {
"name": "pywwt", "author": "",
"version": "0.10.0-dev.0",
"description": "AAS WorldWide Telescope from Python",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"homepage": "https://github.com/WorldWideTelescope/pywwt",
"bugs": { "bugs": {
"url": "https://github.com/WorldWideTelescope/pywwt/issues" "url": "https://github.com/WorldWideTelescope/pywwt/issues"
}, },
"license": "BSD-3-Clause",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/WorldWideTelescope/pywwt"
},
"main": "lib/index.js",
"files": [
"lib/*.js"
],
"scripts": {
"build": "webpack",
"clean": "shx rm -rf dist",
"pywwt-export": "npm run build && npm pack && node pywwt-export.js"
},
"dependencies": { "dependencies": {
"@jupyter-widgets/base": "^2 || ^3" "@jupyter-widgets/base": "^2 || ^3"
}, },
"description": "AAS WorldWide Telescope from Python",
"devDependencies": { "devDependencies": {
"shelljs": "^0.8", "shelljs": "^0.8",
"shx": "^0.3", "shx": "^0.3",
"source-map-loader": "^0.2.1", "source-map-loader": "^0.2.1",
"webpack": "^3.4.1" "webpack": "^3.4.1"
}, },
"files": [
"lib/*.js"
],
"homepage": "https://github.com/WorldWideTelescope/pywwt",
"jupyterlab": { "jupyterlab": {
"extension": "lib/plugin" "extension": "lib/plugin"
} },
} "keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"name": "pywwt",
"repository": {
"type": "git",
"url": "https://github.com/WorldWideTelescope/pywwt"
},
"scripts": {
"build": "webpack",
"clean": "shx rm -rf dist",
"pywwt-export": "npm run build && npm pack && node pywwt-export.js"
},
"version": "0.9.0"
}

Просмотреть файл

@ -1,3 +1,6 @@
[build-system] [build-system]
requires = ["setuptools", "wheel"] requires = ["setuptools", "wheel"]
build-backend = 'setuptools.build_meta' build-backend = 'setuptools.build_meta'
[tool.cranko]
main_version_file = "pywwt/_version.py"

Просмотреть файл

@ -1,4 +1,4 @@
version_info = (0, 10, 0, 'dev', 0) version_info = (0, 9, 0, 'final', 0) # cranko project-version tuple
_specifier_ = {'alpha': '.a', 'beta': '.b', 'candidate': '.rc', 'final': '', 'dev': '.dev'} _specifier_ = {'alpha': '.a', 'beta': '.b', 'candidate': '.rc', 'final': '', 'dev': '.dev'}

Просмотреть файл

@ -1,2 +1,3 @@
[metadata] [metadata]
name = pywwt
description-file = README.rst description-file = README.rst