ashmastaflash/opencellid-wrapper

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
import os
import re
from setuptools import setup


def read(file_name):
    with open(os.path.join(os.path.dirname(__file__), file_name), 'r') as f:
        filestring = f.read()
    return filestring


def get_version():
    raw_init_file = read("opencellid/__init__.py")
    rx_compiled = re.compile(r"\s*__version__\s*=\s*\"(\S+)\"")
    ver = rx_compiled.search(raw_init_file).group(1)
    return ver


def build_long_desc():
    return "\n".join([read(f) for f in ["README.rst", "CHANGELOG.rst"]])


setup(name="opencellid",
      version=get_version(),
      author="Ash Wilson",
      author_email="ash.d.wilson@gmail.com",
      description="A python wrapper for the OpenCellID DB",
      license="BSD",
      keywords="opencellid",
      url="https://github.com/ashmastaflash/opencellid-wrapper",
      packages=["opencellid"],
      install_requires=["requests"],
      long_description=build_long_desc(),
      classifiers=['Programming Language :: Python :: 2.7',
                   'Programming Language :: Python :: 3.6',
                   'Programming Language :: Python :: 3.7'])