scientificai 0.0.1.dev0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scientificai/__info__.py +51 -0
- scientificai/__init__.py +30 -0
- scientificai/tests/__init__.py +7 -0
- scientificai/tests/__main__.py +35 -0
- scientificai-0.0.1.dev0.dist-info/METADATA +57 -0
- scientificai-0.0.1.dev0.dist-info/RECORD +9 -0
- scientificai-0.0.1.dev0.dist-info/WHEEL +5 -0
- scientificai-0.0.1.dev0.dist-info/licenses/LICENSE +28 -0
- scientificai-0.0.1.dev0.dist-info/top_level.txt +1 -0
scientificai/__info__.py
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
#
|
|
3
|
+
# Author: Mike McKerns (mmckerns @scientificai.io)
|
|
4
|
+
# Copyright (c) 2026 Scientific Automation Innovations.
|
|
5
|
+
# License: 3-clause BSD. The full license text is available at:
|
|
6
|
+
# - https://github.com/Scientific-AI/scientificai/blob/master/LICENSE
|
|
7
|
+
'''
|
|
8
|
+
-----------------------------------------------
|
|
9
|
+
scientificai: scientific automation innovations
|
|
10
|
+
-----------------------------------------------
|
|
11
|
+
|
|
12
|
+
About ScientificAI
|
|
13
|
+
==================
|
|
14
|
+
|
|
15
|
+
``scientificai`` enables real-time automated scientific machine-learning and autonomous artificial intelligence solutions.
|
|
16
|
+
|
|
17
|
+
'''
|
|
18
|
+
|
|
19
|
+
__version__ = '0.0.1.dev0'
|
|
20
|
+
__author__ = 'Mike McKerns'
|
|
21
|
+
|
|
22
|
+
__license__ = '''
|
|
23
|
+
BSD 3-Clause License
|
|
24
|
+
|
|
25
|
+
Copyright (c) 2026, Scientific Automation Innovations
|
|
26
|
+
|
|
27
|
+
Redistribution and use in source and binary forms, with or without
|
|
28
|
+
modification, are permitted provided that the following conditions are met:
|
|
29
|
+
|
|
30
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
31
|
+
list of conditions and the following disclaimer.
|
|
32
|
+
|
|
33
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
34
|
+
this list of conditions and the following disclaimer in the documentation
|
|
35
|
+
and/or other materials provided with the distribution.
|
|
36
|
+
|
|
37
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
38
|
+
contributors may be used to endorse or promote products derived from
|
|
39
|
+
this software without specific prior written permission.
|
|
40
|
+
|
|
41
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
42
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
43
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
44
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
45
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
46
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
47
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
48
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
49
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
50
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
51
|
+
'''
|
scientificai/__init__.py
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
#
|
|
3
|
+
# Author: Mike McKerns (mmckerns @scientificai.io)
|
|
4
|
+
# Copyright (c) 2026 Scientific Automation Innovations.
|
|
5
|
+
# License: 3-clause BSD. The full license text is available at:
|
|
6
|
+
# - https://github.com/Scientific-AI/scientificai/blob/master/LICENSE
|
|
7
|
+
|
|
8
|
+
# author, version, license, and long description
|
|
9
|
+
try: # the package is installed
|
|
10
|
+
from .__info__ import __version__, __author__, __doc__, __license__
|
|
11
|
+
except: # pragma: no cover
|
|
12
|
+
import os
|
|
13
|
+
import sys
|
|
14
|
+
parent = os.path.dirname(os.path.abspath(os.path.dirname(__file__)))
|
|
15
|
+
sys.path.append(parent)
|
|
16
|
+
# get distribution meta info
|
|
17
|
+
from version import (__version__, __author__,
|
|
18
|
+
get_license_text, get_readme_as_rst)
|
|
19
|
+
__license__ = get_license_text(os.path.join(parent, 'LICENSE'))
|
|
20
|
+
__license__ = "\n%s" % __license__
|
|
21
|
+
__doc__ = get_readme_as_rst(os.path.join(parent, 'README.md'))
|
|
22
|
+
del os, sys, parent, get_license_text, get_readme_as_rst
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
def license():
|
|
26
|
+
"""print the license"""
|
|
27
|
+
print(__license__)
|
|
28
|
+
return
|
|
29
|
+
|
|
30
|
+
# end of file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
#
|
|
3
|
+
# Author: Mike McKerns (mmckerns @scientificai.io)
|
|
4
|
+
# Copyright (c) 2026 Scientific Automation Innovations.
|
|
5
|
+
# License: 3-clause BSD. The full license text is available at:
|
|
6
|
+
# - https://github.com/Scientific-AI/scientificai/blob/master/LICENSE
|
|
7
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/usr/bin/env python
|
|
2
|
+
#
|
|
3
|
+
# Author: Mike McKerns (mmckerns @scientificai.io)
|
|
4
|
+
# Copyright (c) 2026 Scientific Automation Innovations.
|
|
5
|
+
# License: 3-clause BSD. The full license text is available at:
|
|
6
|
+
# - https://github.com/Scientific-AI/scientificai/blob/master/LICENSE
|
|
7
|
+
|
|
8
|
+
import glob
|
|
9
|
+
import os
|
|
10
|
+
import sys
|
|
11
|
+
import subprocess as sp
|
|
12
|
+
python = sys.executable
|
|
13
|
+
try:
|
|
14
|
+
import pox
|
|
15
|
+
python = pox.which_python(version=True) or python
|
|
16
|
+
except ImportError:
|
|
17
|
+
pass
|
|
18
|
+
shell = sys.platform[:3] == 'win'
|
|
19
|
+
|
|
20
|
+
suite = os.path.dirname(__file__) or os.path.curdir
|
|
21
|
+
tests = glob.glob(suite + os.path.sep + 'test_*.py')
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
if __name__ == '__main__':
|
|
25
|
+
|
|
26
|
+
failed = 0
|
|
27
|
+
for test in tests:
|
|
28
|
+
p = sp.Popen([python, test], shell=shell).wait()
|
|
29
|
+
if p:
|
|
30
|
+
print('F', end='', flush=True)
|
|
31
|
+
failed = 1
|
|
32
|
+
else:
|
|
33
|
+
print('.', end='', flush=True)
|
|
34
|
+
print('')
|
|
35
|
+
exit(failed)
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: scientificai
|
|
3
|
+
Version: 0.0.1.dev0
|
|
4
|
+
Summary: scientific automation innovations
|
|
5
|
+
Home-page: https://github.com/Scientific-AI/scientificai
|
|
6
|
+
Download-URL: https://pypi.org/project/scientificai/#files
|
|
7
|
+
Author: Mike McKerns
|
|
8
|
+
Author-email: mmckerns@scientificai.io
|
|
9
|
+
Maintainer: Mike McKerns
|
|
10
|
+
Maintainer-email: mmckerns@scientificai.io
|
|
11
|
+
License: BSD-3-Clause
|
|
12
|
+
Project-URL: Documentation, http://scientificai.rtfd.io
|
|
13
|
+
Project-URL: Source Code, https://github.com/Scientific-AI/scientificai
|
|
14
|
+
Project-URL: Bug Tracker, https://github.com/Scientific-AI/scientificai/issues
|
|
15
|
+
Platform: Linux
|
|
16
|
+
Platform: Windows
|
|
17
|
+
Platform: Mac
|
|
18
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
19
|
+
Classifier: Intended Audience :: Developers
|
|
20
|
+
Classifier: Intended Audience :: Science/Research
|
|
21
|
+
Classifier: License :: OSI Approved :: BSD License
|
|
22
|
+
Classifier: Programming Language :: Python :: 3
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
29
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
30
|
+
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
31
|
+
Classifier: Topic :: Scientific/Engineering
|
|
32
|
+
Classifier: Topic :: Software Development
|
|
33
|
+
Requires-Python: >=3.10
|
|
34
|
+
License-File: LICENSE
|
|
35
|
+
Dynamic: author
|
|
36
|
+
Dynamic: author-email
|
|
37
|
+
Dynamic: classifier
|
|
38
|
+
Dynamic: description
|
|
39
|
+
Dynamic: download-url
|
|
40
|
+
Dynamic: home-page
|
|
41
|
+
Dynamic: license
|
|
42
|
+
Dynamic: license-file
|
|
43
|
+
Dynamic: maintainer
|
|
44
|
+
Dynamic: maintainer-email
|
|
45
|
+
Dynamic: platform
|
|
46
|
+
Dynamic: project-url
|
|
47
|
+
Dynamic: requires-python
|
|
48
|
+
Dynamic: summary
|
|
49
|
+
|
|
50
|
+
-----------------------------------------------
|
|
51
|
+
scientificai: scientific automation innovations
|
|
52
|
+
-----------------------------------------------
|
|
53
|
+
|
|
54
|
+
About ScientificAI
|
|
55
|
+
==================
|
|
56
|
+
|
|
57
|
+
``scientificai`` enables real-time automated scientific machine-learning and autonomous artificial intelligence solutions.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
scientificai/__info__.py,sha256=OUQ5eQXTCdNOeSfc1lo6Go1neq5lbE_lxhtS5AROM-8,2182
|
|
2
|
+
scientificai/__init__.py,sha256=e6J8fWdRx3qFmeLIWloWah93rIL0sDQ7PQYVd40m-i4,1055
|
|
3
|
+
scientificai/tests/__init__.py,sha256=IALeXQhZo1j4DWegNDi9paPdFKbhhPpJp6gC9IyJ4oc,271
|
|
4
|
+
scientificai/tests/__main__.py,sha256=oq5LW0xIE2yIeFQGRVETIpdsfVy9G3lrk9kc-AezFlo,888
|
|
5
|
+
scientificai-0.0.1.dev0.dist-info/licenses/LICENSE,sha256=IODPbpQmbLwkHqMbRUQMewicJb21Y05DBFyD3-cv2M4,1520
|
|
6
|
+
scientificai-0.0.1.dev0.dist-info/METADATA,sha256=27DvZbcGoR2lGHq20QCFuOy5Hxx4gFuVhCX4PaVv-Fg,2039
|
|
7
|
+
scientificai-0.0.1.dev0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
8
|
+
scientificai-0.0.1.dev0.dist-info/top_level.txt,sha256=NnxhRhHKFOaZ17Q5Xg8edUQKB7-rn899VouPOlnoC3Q,13
|
|
9
|
+
scientificai-0.0.1.dev0.dist-info/RECORD,,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
BSD 3-Clause License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026, Scientific Automation Innovations
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
|
9
|
+
list of conditions and the following disclaimer.
|
|
10
|
+
|
|
11
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
|
12
|
+
this list of conditions and the following disclaimer in the documentation
|
|
13
|
+
and/or other materials provided with the distribution.
|
|
14
|
+
|
|
15
|
+
3. Neither the name of the copyright holder nor the names of its
|
|
16
|
+
contributors may be used to endorse or promote products derived from
|
|
17
|
+
this software without specific prior written permission.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
21
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
22
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
23
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
24
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
25
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
26
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
27
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
28
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
scientificai
|