swizzle 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: swizzle
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Transforms a string representation of a Python literal into the corresponding Python object.
5
5
  Home-page: https://github.com/janthmueller/swizzle
6
6
  Author: Jan T. Müller
@@ -35,6 +35,11 @@ print(Vector(1, 2, 3).yzx) # Output: (2, 3, 1)
35
35
  ```
36
36
 
37
37
  ## Installation
38
+ ### From PyPI
39
+ ```bash
40
+ pip install swizzle
41
+ ```
42
+ ### From GitHub
38
43
  ```bash
39
44
  pip install git+https://github.com/janthmueller/swizzle.git
40
45
  ```
@@ -16,6 +16,11 @@ print(Vector(1, 2, 3).yzx) # Output: (2, 3, 1)
16
16
  ```
17
17
 
18
18
  ## Installation
19
+ ### From PyPI
20
+ ```bash
21
+ pip install swizzle
22
+ ```
23
+ ### From GitHub
19
24
  ```bash
20
25
  pip install git+https://github.com/janthmueller/swizzle.git
21
26
  ```
@@ -35,4 +35,10 @@ setup(
35
35
  "Programming Language :: Python :: 3 :: Only",
36
36
  ],
37
37
  python_requires=">=3.6",
38
- )
38
+ )
39
+
40
+
41
+ # python setup.py sdist bdist_wheel
42
+ # twine check dist/*
43
+ # copy token/pw to $HOME/.pypirc -> cp .pypirc $HOME/.pypirc
44
+ # twine upload dist/*
@@ -3,7 +3,7 @@ import sys
3
3
  import types
4
4
  import inspect
5
5
 
6
- __version__ = "0.1.0"
6
+ __version__ = "0.1.1"
7
7
 
8
8
  def _swizzle(func):
9
9
  def _getattr(obj, name, default=object()):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: swizzle
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Transforms a string representation of a Python literal into the corresponding Python object.
5
5
  Home-page: https://github.com/janthmueller/swizzle
6
6
  Author: Jan T. Müller
@@ -35,6 +35,11 @@ print(Vector(1, 2, 3).yzx) # Output: (2, 3, 1)
35
35
  ```
36
36
 
37
37
  ## Installation
38
+ ### From PyPI
39
+ ```bash
40
+ pip install swizzle
41
+ ```
42
+ ### From GitHub
38
43
  ```bash
39
44
  pip install git+https://github.com/janthmueller/swizzle.git
40
45
  ```
File without changes