Skip to content
Snippets Groups Projects
Verified Commit 78f65b55 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Add python project skeleton

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #1970 failed
honeyssh.egg-info
__pycache__
stages:
- test
- lint
.unittest: &unittest_template
stage: test
script:
- python setup.py test
unittest:py34:
<<: *unittest_template
image: python:3.4
unittest:py35:
<<: *unittest_template
image: python:3.5
unittest:py36:
<<: *unittest_template
image: python:3.6
unittest:py37:
<<: *unittest_template
image: python:3.7
pylint:
image: python:3.6
stage: lint
script:
- pip install pylint
- pip install -r requirements.txt
- pip install .
- ci/pylint.sh
#!/bin/bash
pylint picassools
"""
Python module to perform various image manipulation operations.
"""
"""
Module with unittests for the implementation of picassools.
"""
setup.py 0 → 100644
from os import path
from setuptools import setup
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(name='picassools',
version='0.0.0',
packages=["picasools", "picasools.tests"],
install_requires=['opencv-python', 'numpy'],
scripts=['bin/median-stack'],
test_suite='picassools.tests',
description='Collection of scripts for image manipulation.',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://gitlab.sauerburger.com/frank/picasools",
author="Frank Sauerburger",
author_email="frank@sauerburger.com",
keywords="image maipulation median-stack",
license="MIT",
platforms=["Linux", "Unix"],
classifiers=["Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment