Skip to content

Commit 13dabf7

Browse files
committed
added SDK for v5.0
1 parent 1f1c3db commit 13dabf7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+3701
-5357
lines changed

.gitignore

+60-73
Original file line numberDiff line numberDiff line change
@@ -1,77 +1,64 @@
1-
# Compiled Object files
2-
*.slo
3-
*.lo
4-
*.o
5-
*.page
6-
# Compiled Dynamic libraries
7-
*.so
8-
*.dylib
9-
*.page
10-
# Compiled Static libraries
11-
*.lai
12-
*.la
13-
*.a
14-
*~
15-
*.Rcheck
16-
*.rds
17-
*.tar.gz
18-
*conf
19-
*buffer
20-
*model
21-
*pyc
22-
*.train
23-
*.test
24-
*.tar
25-
*group
26-
*rar
27-
*vali
28-
*sdf
29-
Release
30-
*exe*
31-
*exp
32-
ipch
33-
*.filters
34-
*.user
35-
*log
36-
Debug
37-
*suo
38-
.Rhistory
39-
*.dll
40-
*i386
41-
*x64
42-
*dump
43-
*save
44-
*csv
45-
.Rproj.user
46-
*.cpage.col
47-
*.cpage
48-
*.Rproj
49-
nb-configuration*
50-
# Eclipse
51-
.project
52-
.cproject
53-
.pydevproject
54-
.settings/
55-
build
56-
*.data
57-
.idea
58-
recommonmark/
59-
tags
60-
*.iml
61-
*.class
62-
target
63-
*.swp
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
645

65-
# cpp tests and gcov generated files
66-
*.gcov
67-
*.gcda
68-
*.gcno
69-
build_tests
6+
# C extensions
7+
*.so
708

71-
.DS_Store
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
build/
13+
develop-eggs/
14+
dist/
15+
downloads/
16+
eggs/
17+
.eggs/
7218
lib/
19+
lib64/
20+
parts/
21+
sdist/
22+
var/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
27+
# PyInstaller
28+
# Usually these files are written by a python script from a template
29+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
30+
*.manifest
31+
*.spec
32+
33+
# Installer logs
34+
pip-log.txt
35+
pip-delete-this-directory.txt
36+
37+
# Unit test / coverage reports
38+
htmlcov/
39+
.tox/
40+
.coverage
41+
.coverage.*
42+
.cache
43+
nosetests.xml
44+
coverage.xml
45+
*,cover
46+
.hypothesis/
47+
venv/
48+
.python-version
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
57+
# Sphinx documentation
58+
docs/_build/
59+
60+
# PyBuilder
61+
target/
7362

74-
# Temporary data
75-
*.pmr
76-
*.ipynb_checkpoints
77-
*.idea/
63+
#Ipython Notebook
64+
.ipynb_checkpoints

.gitmodules

-3
This file was deleted.

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/aspose-omr-cloud-python.iml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/profiles_settings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ref: https://docs.travis-ci.com/user/languages/python
2+
language: python
3+
python:
4+
- "3.2"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
#- "3.5-dev" # 3.5 development branch
9+
#- "nightly" # points to the latest development branch e.g. 3.6-dev
10+
# command to install dependencies
11+
install: "pip install -r requirements.txt"
12+
# command to run tests
13+
script: nosetests

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020 Aspose Pty Ltd
3+
Copyright (c) 2001-2023 Aspose Pty Ltd
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)