Explorar el Código

Project start

Nikola Kotur hace 5 años
commit
34ceee79b5
Se han modificado 8 ficheros con 139 adiciones y 0 borrados
  1. 99 0
      .gitignore
  2. 7 0
      README.md
  3. 2 0
      jirashell/__init__.py
  4. 4 0
      jirashell/main.py
  5. 1 0
      jirashell/ui/gui.ui
  6. 2 0
      requirements.txt
  7. 18 0
      setup.cfg
  8. 6 0
      setup.py

+ 99 - 0
.gitignore

@@ -0,0 +1,99 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+#  Usually these files are written by a python script from a template
+#  before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+.hypothesis/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# pyenv
+.python-version
+
+# celery beat schedule file
+celerybeat-schedule
+
+# SageMath parsed files
+*.sage.py
+
+# Environments
+.env
+.venv
+env/
+venv/
+ENV/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/

+ 7 - 0
README.md

@@ -0,0 +1,7 @@
+# Jira Shell
+
+```
+virtualenv .env
+source .env/bin/activate
+pip install -e .
+```

+ 2 - 0
jirashell/__init__.py

@@ -0,0 +1,2 @@
+""" This is JIRA-shell
+"""

+ 4 - 0
jirashell/main.py

@@ -0,0 +1,4 @@
+# -*- coding: utf-8 -*-
+
+def main():
+    print('Hello world')

+ 1 - 0
jirashell/ui/gui.ui

@@ -0,0 +1 @@
+# TBD

+ 2 - 0
requirements.txt

@@ -0,0 +1,2 @@
+PySide2==5.12.0
+jira

+ 18 - 0
setup.cfg

@@ -0,0 +1,18 @@
+[metadata]
+name = jirashell
+author = Nikola Kotur
+author-email = kotnick@gmail.com
+url = https://git.kotur.org/kotnik/jira-shell
+summary = Use JIRA over the API
+description-file = README.md
+license = MIT
+
+[files]
+packages =
+    jirashell
+data-files =
+    jirashell/ui = jirashell/ui/*
+
+[entry_points]
+console_scripts =
+    jirashell = jirashell.main:main

+ 6 - 0
setup.py

@@ -0,0 +1,6 @@
+from setuptools import setup
+
+setup(
+    setup_requires=["pbr"],
+    pbr=True,
+    )