pyLoopSage 0.1.0__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: An energy-based stochastic model of loop extrusion in chromatin.
5
5
  Home-page: https://github.com/SFGLab/pyLoopSage
6
6
  Author: Sebastian Korsak
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyLoopSage
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: An energy-based stochastic model of loop extrusion in chromatin.
5
5
  Home-page: https://github.com/SFGLab/pyLoopSage
6
6
  Author: Sebastian Korsak
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ loopsage = loopsage.run:main
@@ -6,7 +6,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
6
6
 
7
7
  setup(
8
8
  name='pyLoopSage', # Package name
9
- version='0.1.0', # Version of the software
9
+ version='0.1.1', # Version of the software
10
10
  description='An energy-based stochastic model of loop extrusion in chromatin.',
11
11
  long_description=long_description,
12
12
  long_description_content_type='text/markdown',
@@ -38,7 +38,7 @@ setup(
38
38
  ],
39
39
  entry_points={
40
40
  'console_scripts': [
41
- 'loopsage=LoopSage.run:main', # loopsage command points to run.py's main function
41
+ 'loopsage=loopsage.run:main', # loopsage command points to run.py's main function
42
42
  ],
43
43
  },
44
44
  classifiers=[
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- loopsage = LoopSage.run:main
File without changes
File without changes
File without changes