Skip to content

Commit

Permalink
chore(setup): update setup args
Browse files Browse the repository at this point in the history
- install requires `ignition-api-jython`
- add classifiers
- bump version
  • Loading branch information
cesarcoatl committed Sep 13, 2021
1 parent 36b638f commit 0e63e72
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env jython
# -*- coding: utf-8 -*-

"""incendium."""
Expand All @@ -20,16 +20,16 @@
setup(
name=about["__title__"],
version=about["__version__"],
description=about["__description__"],
description="{}{}".format(about["__description__"], about["__cycle__"]),
long_description=readme,
long_description_content_type="text/markdown",
url=about["__url__"],
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
packages=find_packages(where="src"),
package_dir={"": "src"},
license=about["__license__"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: MIT License",
Expand All @@ -43,4 +43,9 @@
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing :: Mocking",
],
keywords="hmi, ignition, inductive automation, scada",
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=2.7, <3",
install_requires=["ignition-api-jython>=8"],
)
1 change: 1 addition & 0 deletions src/incendium/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
__description__ = "Package that extends and wraps Ignition Scripting API."
__url__ = "https://github.com/thecesrom/incendium"
__version__ = "1.0.7"
__cycle__ = ".post1"
__author__ = "César Román"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down

0 comments on commit 0e63e72

Please sign in to comment.