Verified Commit b0c4174f authored by Peter Stanko's avatar Peter Stanko
Browse files

Updated the kontr-api setup

parent 937cac07
Loading
Loading
Loading
Loading
+32 −16
Original line number Diff line number Diff line
from setuptools import setup, find_packages


with open("README.adoc", "r") as fh:
    long_description = fh.read()

requirements = ['requests', 'pyjwt']

extra_requirements = {
          'dev': [
              'pytest',
              'coverage',
              'pytest-cov',
              'mock',
              ],
          'docs': ['sphinx',]
          },


setup(name='kontr-api',
      version='1.0',
      version='0.9',
      description='Kontr Portal REST Api Client',
      author='Peter Stanko',
      author_email='stanko@mail.muni.cz',
      maintainer='Peter Stanko',
      url='https://gitlab.fi.muni.cz/grp-kontr2/kontr-api',
      packages=find_packages(exclude=("tests",)),
      long_description=long_description,
      long_description_content_type="text/asciidoc",
      include_package_data=True,
      install_requires=[
          'requests',
          'pyjwt'
          ],
      extras_require={
          'dev': [
              'pytest',
              'coverage',
              'pytest-cov',
              'pytest-mock',
              ],
          'docs': [
              'sphinx',
              ]
          },
      install_requires=requirements,
      extras_require=extra_requirements,
      entry_points={},
      classifiers=[
        "Programming Language :: Python :: 3",
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        "Operating System :: OS Independent",
        "License :: OSI Approved :: Apache Software License",
        'Intended Audience :: Developers',
        'Topic :: Utilities',
        ],
      )