Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
dist
venv
.idea
**/__pycache__
*.egg-info
*.log
*.log.*
.env
.env
Empty file added agrirouter/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
from setuptools import setup

setup(
name='agrirouter-sdk-python',
version='1.0.0',
packages=['agrirouter'],
python_requires=">= 3.6",
url='https://github.com/DKE-Data/agrirouter-sdk-python',
license='Apache-2.0',
author='agrirouter',
author_email='[email protected]',
description="""This project contains the API for the communication with the agrirouter. Everything you need for the
onboarding process, secure communication and much more.""",
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'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',
],
project_urls={
'Documentation': 'https://github.com/DKE-Data/agrirouter-sdk-python',
'Source': 'https://github.com/DKE-Data/agrirouter-sdk-python',
},
)