mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-03-04 12:27:53 +00:00
35 lines
875 B
Python
Vendored
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,
|
|
)
|