Skip to content

Commit 8fbddb1

Browse files
author
FusionSolutions
committed
upload
1 parent bed7ccb commit 8fbddb1

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

setup.py

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,29 @@
11
#!/usr/bin/env python3
22
import os
3-
import fsPacker
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 `iFA` Rajci - Fusions Solutions KFT",
17-
author_email = "ifa@fusionsolutions.io",
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 = "ifa@fusionsolutions.io",
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)