s1320164-learn 0.0.1__tar.gz
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.
- s1320164_learn-0.0.1/PKG-INFO +24 -0
- s1320164_learn-0.0.1/README.md +1 -0
- s1320164_learn-0.0.1/s1320164_learn/__init__.py +0 -0
- s1320164_learn-0.0.1/s1320164_learn/statistics/__init__.py +0 -0
- s1320164_learn-0.0.1/s1320164_learn/statistics/itemFequencies.py +0 -0
- s1320164_learn-0.0.1/s1320164_learn/visualization/__init__.py +0 -0
- s1320164_learn-0.0.1/s1320164_learn/visualization/heatMap.py +0 -0
- s1320164_learn-0.0.1/s1320164_learn.egg-info/PKG-INFO +24 -0
- s1320164_learn-0.0.1/s1320164_learn.egg-info/SOURCES.txt +12 -0
- s1320164_learn-0.0.1/s1320164_learn.egg-info/dependency_links.txt +1 -0
- s1320164_learn-0.0.1/s1320164_learn.egg-info/requires.txt +1 -0
- s1320164_learn-0.0.1/s1320164_learn.egg-info/top_level.txt +1 -0
- s1320164_learn-0.0.1/setup.cfg +4 -0
- s1320164_learn-0.0.1/setup.py +25 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: s1320164_learn
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A learning package created for the PAMI course assignment
|
|
5
|
+
Home-page: https://github.com/satoyuhi-disc/s1320164_learn
|
|
6
|
+
Author: s1320164
|
|
7
|
+
Author-email: s1320164@u-aizu.ac.jp
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: pami
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: description-content-type
|
|
19
|
+
Dynamic: home-page
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# s1320164_learn
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# s1320164_learn
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: s1320164_learn
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A learning package created for the PAMI course assignment
|
|
5
|
+
Home-page: https://github.com/satoyuhi-disc/s1320164_learn
|
|
6
|
+
Author: s1320164
|
|
7
|
+
Author-email: s1320164@u-aizu.ac.jp
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.7
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
Requires-Dist: pami
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: classifier
|
|
17
|
+
Dynamic: description
|
|
18
|
+
Dynamic: description-content-type
|
|
19
|
+
Dynamic: home-page
|
|
20
|
+
Dynamic: requires-dist
|
|
21
|
+
Dynamic: requires-python
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
# s1320164_learn
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
s1320164_learn/__init__.py
|
|
4
|
+
s1320164_learn.egg-info/PKG-INFO
|
|
5
|
+
s1320164_learn.egg-info/SOURCES.txt
|
|
6
|
+
s1320164_learn.egg-info/dependency_links.txt
|
|
7
|
+
s1320164_learn.egg-info/requires.txt
|
|
8
|
+
s1320164_learn.egg-info/top_level.txt
|
|
9
|
+
s1320164_learn/statistics/__init__.py
|
|
10
|
+
s1320164_learn/statistics/itemFequencies.py
|
|
11
|
+
s1320164_learn/visualization/__init__.py
|
|
12
|
+
s1320164_learn/visualization/heatMap.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pami
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
s1320164_learn
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
with open("README.md", "r", encoding="utf-8") as fh:
|
|
4
|
+
long_description = fh.read()
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="s1320164_learn",
|
|
8
|
+
version="0.0.1",
|
|
9
|
+
author="s1320164",
|
|
10
|
+
author_email="s1320164@u-aizu.ac.jp",
|
|
11
|
+
description="A learning package created for the PAMI course assignment",
|
|
12
|
+
long_description=long_description,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/satoyuhi-disc/s1320164_learn",
|
|
15
|
+
packages=find_packages(),
|
|
16
|
+
install_requires=[
|
|
17
|
+
"pami",
|
|
18
|
+
],
|
|
19
|
+
classifiers=[
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
],
|
|
24
|
+
python_requires=">=3.7",
|
|
25
|
+
)
|