LucaCappelletti94/ddd_subplots

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Setup script for ddd_subplots."""
import os
import re

# To use a consistent encoding
from codecs import open as copen
from os import path

from setuptools import find_packages, setup

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

# Get the long description from the relevant file
with copen(path.join(here, "README.rst"), encoding="utf-8") as f:
    long_description = f.read()


def read(*parts):
    with copen(os.path.join(here, *parts), "r") as fp:
        return fp.read()


def find_version(*file_paths):
    version_file = read(*file_paths)
    version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file, re.M)
    if version_match:
        return version_match.group(1)
    raise RuntimeError("Unable to find version string.")


__version__ = find_version("ddd_subplots", "__version__.py")

test_deps = [
    "pytest",
    "pytest-cov",
    "coveralls",
    "validate_version_code",
    "codacy-coverage",
    "environments_utils",
]

extras = {
    "test": test_deps,
}

setup(
    name="ddd_subplots",
    version=__version__,
    description="Python package making it easier to handle mixed 3d and 2d subplots.",
    long_description=long_description,
    url="https://github.com/LucaCappelletti94/ddd_subplots",
    author="Luca Cappelletti",
    author_email="cappelletti.luca94@gmail.com",
    # Choose your license
    license="MIT",
    include_package_data=True,
    classifiers=[
        "Development Status :: 3 - Alpha",
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3",
    ],
    packages=find_packages(exclude=["contrib", "docs", "tests*"]),
    tests_require=test_deps,
    # Add here the package dependencies
    install_requires=[
        "matplotlib",
        "numpy",
        "tqdm",
        "imageio",
        "scikit-learn",
        "opencv-python",
        "environments_utils",
    ],
    extras_require=extras,
)