2022-04-29 11:13:57 +01:00

35 lines
875 B
Python
Vendored

# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
REQUIREMENTS = [
'grpcio',
'google-api-core'
]
CLASSIFIERS = [
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Topic :: Communications',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
setup(
name='chirpstack-api',
version = "4.0.0-test.1",
url='https://github.com/brocaar/chirpstack-api',
author='Orne Brocaar',
author_email='info@brocaar.com',
license='MIT',
description='Chirpstack Python API',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=CLASSIFIERS,
)