autoencoders 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.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: autoencoders
3
+ Version: 0.0.1
4
+ Summary: autoencoders for PyTorch
5
+ Home-page: https://github.com/Jyonn/autoencoders
6
+ Author: Jyonn Liu
7
+ Author-email: i@6-79.cn
8
+ License: MIT Licence
9
+ Keywords: encoder,autoencoder,deep learning,pytorch
10
+ Platform: any
11
+ Description-Content-Type: text/markdown
12
+
13
+ # autoencoders
14
+
15
+
16
+
@@ -0,0 +1,2 @@
1
+ # autoencoders
2
+
@@ -0,0 +1 @@
1
+ autoencoders = 'autoencoders'
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.1
2
+ Name: autoencoders
3
+ Version: 0.0.1
4
+ Summary: autoencoders for PyTorch
5
+ Home-page: https://github.com/Jyonn/autoencoders
6
+ Author: Jyonn Liu
7
+ Author-email: i@6-79.cn
8
+ License: MIT Licence
9
+ Keywords: encoder,autoencoder,deep learning,pytorch
10
+ Platform: any
11
+ Description-Content-Type: text/markdown
12
+
13
+ # autoencoders
14
+
15
+
16
+
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ autoencoders/__init__.py
4
+ autoencoders.egg-info/PKG-INFO
5
+ autoencoders.egg-info/SOURCES.txt
6
+ autoencoders.egg-info/dependency_links.txt
7
+ autoencoders.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ autoencoders
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,22 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ from pathlib import Path
4
+ this_directory = Path(__file__).parent
5
+ long_description = (this_directory / "README.md").read_text(encoding='utf8')
6
+
7
+ setup(
8
+ name='autoencoders',
9
+ version='0.0.1',
10
+ keywords=['encoder', 'autoencoder', 'deep learning', 'pytorch'],
11
+ description='autoencoders for PyTorch',
12
+ long_description=long_description,
13
+ long_description_content_type='text/markdown',
14
+ license='MIT Licence',
15
+ url='https://github.com/Jyonn/autoencoders',
16
+ author='Jyonn Liu',
17
+ author_email='i@6-79.cn',
18
+ platforms='any',
19
+ packages=find_packages(),
20
+ install_requires=[
21
+ ],
22
+ )