Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
489 B

  1. import setuptools
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. setuptools.setup(
  5. name='encdec8b10b',
  6. version='1.0',
  7. packages=setuptools.find_packages(),
  8. url='https://github.com/olagrottvik/encdec8b10b',
  9. license='MIT',
  10. author='Ola Grøttvik',
  11. author_email='olagrottvik@gmail.com',
  12. description='8B10B Encoding and Decoding',
  13. long_description=long_description,
  14. long_description_content_type="text/markdown",
  15. )