forked from HelikarLab/candis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated distribution script, functional pip installation
- Loading branch information
1 parent
d9b174e
commit 7cb94d8
Showing
9 changed files
with
70 additions
and
29 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,16 @@ | ||
|
||
language: python | ||
python: | ||
# - "2.6" # no longer supported. | ||
- "2.7" | ||
# - "3.2" # coverage seems to fail. | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "3.5-dev" | ||
- "3.6" | ||
- "3.6-dev" | ||
- "3.7-dev" | ||
install: | ||
- make install | ||
script: | ||
- make test |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
{ | ||
"port": 5000, | ||
"debug": true, | ||
"host": "0.0.0.0", | ||
"port": 5000, | ||
"lang": "en", | ||
"encoding": "utf-8", | ||
"title": "candis v0.1.0", | ||
"color": { | ||
"primary": "#E91E63" | ||
}, | ||
"urls": { | ||
"docs": "https://candis.readthedocs.io" | ||
}, | ||
"routes": { | ||
"api": { | ||
"base": "/", | ||
"assets": "/assets", | ||
"images": "/assets/img", | ||
"icons": "/assets/img/icons", | ||
"signin": "/SignIn", | ||
"API": { | ||
"data": { | ||
"write": "/api/data/write", | ||
"resource": "/api/data/resource", | ||
"read": "/api/data/read", | ||
"resource": "/api/data/resource" | ||
"write": "/api/data/write" | ||
}, | ||
"preprocess": { | ||
"methods": "/api/preprocess/methods" | ||
}, | ||
"pipeline": { | ||
"run": "/api/run" | ||
}, | ||
"featselect": { | ||
"methods": "/api/featselect/methods" | ||
}, | ||
"model": { | ||
"methods": "/api/model/methods" | ||
}, | ||
"pipeline": { | ||
"run": "/api/run" | ||
} | ||
}, | ||
"signin": "/SignIn", | ||
"assets": "/assets", | ||
"icons": "/assets/img/icons", | ||
"images": "/assets/img", | ||
"base": "/" | ||
} | ||
}, | ||
"urls": { | ||
"docs": "https://candis.readthedocs.io" | ||
}, | ||
"host": "0.0.0.0", | ||
"color": { | ||
"primary": "#E91E63" | ||
}, | ||
"lang": "en", | ||
"container": "app", | ||
"encoding": "utf-8", | ||
"startdir": "CRES" | ||
} | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
honcho | ||
jupyter | ||
pylint | ||
twine | ||
sphinx | ||
addict | ||
pyyaml | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
honcho | ||
jupyter | ||
pylint | ||
twine |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[bdist_wheel] | ||
universal=1 |
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