Преглед изворни кода

PIP seems to be kinda working now

master
Pete Shadbolt пре 7 година
родитељ
комит
85d6c262d9
27 измењених фајлова са 4 додато и 8 уклоњено
  1. +0
    -0
      abp/static/__init__.py
  2. +0
    -0
      abp/static/img/ball.png
  3. +0
    -0
      abp/static/img/ball.svg
  4. +0
    -0
      abp/static/img/make_figs.sh
  5. +0
    -0
      abp/static/img/tip.png
  6. +0
    -0
      abp/static/img/tip.svg
  7. +0
    -0
      abp/static/index.html
  8. +0
    -0
      abp/static/main.css
  9. +0
    -0
      abp/static/scripts/.gitignore
  10. +0
    -0
      abp/static/scripts/anders_briegel.js
  11. +0
    -0
      abp/static/scripts/editor.js
  12. +0
    -0
      abp/static/scripts/graph.js
  13. +0
    -0
      abp/static/scripts/gui.js
  14. +0
    -0
      abp/static/scripts/interaction.js
  15. +0
    -0
      abp/static/scripts/main.js
  16. +0
    -0
      abp/static/scripts/materials.js
  17. +0
    -0
      abp/static/scripts/message.js
  18. +0
    -0
      abp/static/scripts/mouse.js
  19. +0
    -0
      abp/static/scripts/orbitcontrols.js
  20. +0
    -0
      abp/static/scripts/tables.js
  21. +0
    -0
      abp/static/scripts/tests.js
  22. +0
    -0
      abp/static/scripts/three.js
  23. +0
    -0
      abp/static/scripts/websocket.js
  24. +0
    -0
      abp/static/test.html
  25. +2
    -1
      bin/abpserver
  26. +2
    -5
      setup.py
  27. +0
    -2
      static/scripts/.agignore

static/scripts/message.js → abp/static/__init__.py Прегледај датотеку


static/img/ball.png → abp/static/img/ball.png Прегледај датотеку


static/img/ball.svg → abp/static/img/ball.svg Прегледај датотеку


static/img/make_figs.sh → abp/static/img/make_figs.sh Прегледај датотеку


static/img/tip.png → abp/static/img/tip.png Прегледај датотеку


static/img/tip.svg → abp/static/img/tip.svg Прегледај датотеку


static/index.html → abp/static/index.html Прегледај датотеку


static/main.css → abp/static/main.css Прегледај датотеку


static/scripts/.gitignore → abp/static/scripts/.gitignore Прегледај датотеку


static/scripts/anders_briegel.js → abp/static/scripts/anders_briegel.js Прегледај датотеку


static/scripts/editor.js → abp/static/scripts/editor.js Прегледај датотеку


static/scripts/graph.js → abp/static/scripts/graph.js Прегледај датотеку


static/scripts/gui.js → abp/static/scripts/gui.js Прегледај датотеку


static/scripts/interaction.js → abp/static/scripts/interaction.js Прегледај датотеку


static/scripts/main.js → abp/static/scripts/main.js Прегледај датотеку


static/scripts/materials.js → abp/static/scripts/materials.js Прегледај датотеку


+ 0
- 0
abp/static/scripts/message.js Прегледај датотеку


static/scripts/mouse.js → abp/static/scripts/mouse.js Прегледај датотеку


static/scripts/orbitcontrols.js → abp/static/scripts/orbitcontrols.js Прегледај датотеку


static/scripts/tables.js → abp/static/scripts/tables.js Прегледај датотеку


static/scripts/tests.js → abp/static/scripts/tests.js Прегледај датотеку


static/scripts/three.js → abp/static/scripts/three.js Прегледај датотеку


static/scripts/websocket.js → abp/static/scripts/websocket.js Прегледај датотеку


static/test.html → abp/static/test.html Прегледај датотеку


+ 2
- 1
bin/abpserver Прегледај датотеку

@@ -7,6 +7,7 @@ import os, sys, threading
import webbrowser
import argparse
import abp
from pkg_resources import resource_filename

clients = []

@@ -32,7 +33,7 @@ if __name__ == '__main__':
args = parser.parse_args()

# Change to the right working dir
where = os.path.join(os.path.dirname(abp.__path__[0]), "static")
where = os.path.abspath(resource_filename("abp.static", ""))
os.chdir(where)

# Start the HTTP server


+ 2
- 5
setup.py Прегледај датотеку

@@ -2,14 +2,11 @@ from setuptools import setup, find_packages
from glob import glob
from os import path

APPNAME = "abp"
STATIC = glob("static/*.*")+glob("static/img/*.*")+glob("static/scripts/*.*")
appdata = path.expanduser(path.join("~", "." + APPNAME))
print appdata

setup(
name = "abp",
version = "0.4",
version = "0.4.1",
packages = find_packages(),
test_suite = "tests",
author = "Pete Shadbolt",
@@ -20,5 +17,5 @@ setup(
setup_requires = ["numpy"],
scripts = ["bin/abpserver"],
install_requires = ["numpy", "networkx", "tqdm", "websocket-client", "websocket-server"],
data_files = [("static", STATIC)]
package_data = {"abp.static": STATIC}
)

+ 0
- 2
static/scripts/.agignore Прегледај датотеку

@@ -1,2 +0,0 @@
three.js
orbitcontrols.js

Loading…
Откажи
Сачувај