-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: - option to install using `jython -m pip install`
- Loading branch information
1 parent
0620230
commit b76db29
Showing
9 changed files
with
71 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[settings] | ||
profile = black | ||
multi_line_output = 3 | ||
py_version = 27 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[pydocstyle] | ||
convention = google | ||
add_ignore = D205, D415 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
include README.md LICENSE |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |