Skip to content

Commit dfb4b1c

Browse files
authored
Upgrade to 0.1.1
Cosmetic update
2 parents 2407780 + 8fbddb1 commit dfb4b1c

File tree

3 files changed

+21
-22
lines changed

3 files changed

+21
-22
lines changed

fsPacker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.1.1"
22
__doc__ = """
33
FS Message Packer v{}
44
Copyright (C) 2021 Fusion Solutions KFT <[email protected]>

fsPacker/test/fsPacker.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
class FSPackerTest(unittest.TestCase):
1111
data:Any
1212
@classmethod
13-
def setUpClass(self) -> None:
14-
self.data = (
13+
def setUpClass(cls) -> None:
14+
cls.data = (
1515
None,
1616
True,
1717
False,

setup.py

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
#!/usr/bin/env python3
2-
import os, shutil
3-
import fsPacker
2+
import os
43
try:
5-
from setuptools import setup
4+
from setuptools import setup # type: ignore
65
except ImportError:
76
from distutils.core import setup
87

98
pwd = os.path.abspath(os.path.dirname(__file__))
109

1110
setup(
12-
name = "python-fspacker",
13-
version = fsPacker.__version__,
14-
description = "Fusion Solutions message packer",
15-
keywords = "message pack packer utility fusion solutions fusionsolutions",
16-
author = "Andor `iFA88` Rajci - Fusions Solutions KFT",
17-
author_email = "[email protected]",
18-
url = "https://github.com/FusionSolutions/python-fspacker",
19-
license = "GPL-3",
20-
packages=["fsPacker"],
21-
long_description=open(os.path.join(pwd, "README.md")).read(),
22-
long_description_content_type="text/markdown",
23-
zip_safe=False,
24-
python_requires=">=3.7.0",
25-
test_suite="fsPacker.test",
26-
package_data={ "":["py.typed"] },
27-
classifiers=[ # https://pypi.org/pypi?%3Aaction=list_classifiers
11+
name = "python-fspacker",
12+
version = "0.1.1",
13+
description = "Fusion Solutions message packer",
14+
keywords = "message pack packer utility fusion solutions fusionsolutions",
15+
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
16+
author_email = "[email protected]",
17+
url = "https://github.com/FusionSolutions/python-fspacker",
18+
license = "GPL-3",
19+
packages = ["fsPacker"],
20+
long_description = open(os.path.join(pwd, "README.md")).read(),
21+
long_description_content_type = "text/markdown",
22+
zip_safe = False,
23+
python_requires = ">=3.7.0",
24+
test_suite = "fsPacker.test",
25+
package_data = { "":["py.typed"] },
26+
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
2827
"Development Status :: 4 - Beta",
2928
"Topic :: Utilities",
3029
"Programming Language :: Python :: 3 :: Only",

0 commit comments

Comments
 (0)