|
1 | 1 | #!/usr/bin/env python3
|
2 | 2 | import os
|
3 |
| -import fsPacker |
4 | 3 | try:
|
5 |
| - from setuptools import setup |
| 4 | + from setuptools import setup # type: ignore |
6 | 5 | except ImportError:
|
7 | 6 | from distutils.core import setup
|
8 | 7 |
|
9 | 8 | pwd = os.path.abspath(os.path.dirname(__file__))
|
10 | 9 |
|
11 | 10 | 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 |
28 | 27 | "Development Status :: 4 - Beta",
|
29 | 28 | "Topic :: Utilities",
|
30 | 29 | "Programming Language :: Python :: 3 :: Only",
|
|
0 commit comments