Skip to content

Commit

Permalink
Added setup package
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandro-santini committed Aug 24, 2022
1 parent cd23e11 commit f773908
Show file tree
Hide file tree
Showing 52 changed files with 37 additions and 0 deletions.
13 changes: 13 additions & 0 deletions TenNet.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Metadata-Version: 2.1
Name: TenNet
Version: 0.1.0
Summary: UNKNOWN
Home-page: https://github.com/alessandro-santini/TenNet
Author: Alessandro Santini
Author-email: asantini@sissa.it
License: UNKNOWN
Platform: UNKNOWN
License-File: LICENSE

UNKNOWN

7 changes: 7 additions & 0 deletions TenNet.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
LICENSE
README.md
setup.py
TenNet.egg-info/PKG-INFO
TenNet.egg-info/SOURCES.txt
TenNet.egg-info/dependency_links.txt
TenNet.egg-info/top_level.txt
1 change: 1 addition & 0 deletions TenNet.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions TenNet.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TenNet
2 changes: 2 additions & 0 deletions __init__.py → TenNet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
__version__ = '0.1.0'

from . import tensors
from . import tools
from . import spin_systems
Expand Down
Binary file added TenNet/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed __pycache__/__init__.cpython-38.pyc
Binary file not shown.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from setuptools import setup
from TenNet import __version__

setup(
name='TenNet',
version=__version__,

url='https://github.com/alessandro-santini/TenNet',
author='Alessandro Santini',
author_email='asantini@sissa.it',

py_modules=['TenNet'],
)

0 comments on commit f773908

Please sign in to comment.