File: setup.py

package info (click to toggle)
python-mypermobil 0.1.8-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 168 kB
  • sloc: python: 1,172; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import setuptools

setuptools.setup(
    name="mypermobil",
    version="0.1.8",
    description="A Python wrapper for the MyPermobil API",
    url="https://github.com/IsakNyberg/MyPermobil-API",
    author="Isak Nyberg",
    author_email="isak@nyberg.dev",
    license="MIT",
    packages=["mypermobil"],
    install_requires=["aiohttp", "aiocache"],
    test_requires=["pytest", "aiounittest", "aiocache"],
    long_description=open("README.md").read(),
    long_description_content_type="text/markdown",
)