File: setup.py

package info (click to toggle)
goslide-api 0.7.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 120 kB
  • sloc: python: 597; makefile: 3
file content (34 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
'''
Install Slide Open Cloud and Local API
'''

import setuptools

with open('README.pypi') as f:
    LONG_DESCRIPTION = f.read()

setuptools.setup(
    name='goslide-api',
    version='0.7.3',
    url='https://github.com/ualex73/goslide-api',
    license='Apache License 2.0',
    author='Alexander Kuiper',
    author_email='ualex73@gmail.com',
    description='Python API to utilise the Slide Open Cloud and Local API',
    long_description=LONG_DESCRIPTION,
    long_description_content_type='text/markdown',
    packages=setuptools.find_packages(),
    install_requires=['aiohttp'],
    python_requires='>=3.5.2',
    classifiers=[
        'Programming Language :: Python :: 3.6',
        'Programming Language :: Python :: 3.7',
        'Programming Language :: Python :: 3.8',
        'Programming Language :: Python :: 3.9',
        'Programming Language :: Python :: 3.10',
        'Programming Language :: Python :: 3.11',
        'Programming Language :: Python :: 3.12',
        'License :: OSI Approved :: Apache Software License',
        'Operating System :: OS Independent',
    ],
)