Skip to content

Commit

Permalink
feat(release): v1.0.7
Browse files Browse the repository at this point in the history
add:
- option to install using `jython -m pip install`
  • Loading branch information
cesarcoatl committed Sep 11, 2021
1 parent 0620230 commit b76db29
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 18 deletions.
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[flake8]
ignore = F821, W503
exclude = setup.py
max-complexity = 10
max-doc-length = 72
4 changes: 4 additions & 0 deletions .isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[settings]
profile = black
multi_line_output = 3
py_version = 27
3 changes: 3 additions & 0 deletions .pydocstylerc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pydocstyle]
convention = google
add_ignore = D205, D415
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fail-on=
fail-under=10.0

# Files or directories to be skipped. They should be base names, not paths.
ignore=CVS
ignore=CVS, setup.py

# Add files or directories matching the regex patterns to the ignore-list. The
# regex matches against paths.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include README.md LICENSE
11 changes: 0 additions & 11 deletions pyproject.toml

This file was deleted.

46 changes: 46 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-

"""incendium API."""

import os
from codecs import open

from setuptools import find_packages, setup

here = os.path.abspath(os.path.dirname(__file__))

about = {}
with open(os.path.join(here, "src", "system", "__version__.py"), "r") as f:
exec (f.read(), about)

with open("README.md", "r", "utf-8") as f:
readme = f.read()

setup(
name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
long_description=readme,
long_description_content_type="text/markdown",
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
packages=find_packages(where="src"),
package_dir={"": "src"},
license=about["__license__"],
classifiers=[
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: Jython",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing :: Mocking",
],
)
6 changes: 0 additions & 6 deletions src/incendium/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,3 @@
For more information, please refer to the Wiki.
https://github.com/thecesrom/incendium/wiki
"""

__author__ = "Cesar Roman"
__author_email__ = "[email protected]"
__license__ = "MIT"
__url__ = "https://github.com/thecesrom/incendium"
__version__ = "1.0.6"
15 changes: 15 additions & 0 deletions src/incendium/__version__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# coding=utf-8
# Copyright (C) 2018-2021
# Author: Cesar Roman
# Contact: [email protected]

"""Package information."""

__title__ = "incendium"
__description__ = "Package that extends and wraps Ignition Scripting API."
__url__ = "https://github.com/thecesrom/incendium"
__version__ = "1.0.7"
__author__ = "César Román"
__author_email__ = "[email protected]"
__license__ = "MIT"
__copyright__ = "Copyright (C) 2018-2021 César Román"

0 comments on commit b76db29

Please sign in to comment.