In-system programming tool for LPC microcontrollers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

setup.py 1.2KB

1234567891011121314151617181920212223242526272829303132333435
  1. from setuptools import setup
  2. with open("README.rst") as file:
  3. long_description = file.read()
  4. setup(
  5. name = "alpaca_isp",
  6. version = "0.2.0",
  7. author = "Clayton G. Hobbs",
  8. author_email = "clay@lakeserv.net",
  9. description = "In-system programming tool for LPC microcontrollers",
  10. license = "Apache",
  11. keywords = "lpc microcontroller mcu flash isp",
  12. url = "https://git.clayhobbs.com/clay/alpaca_isp",
  13. packages = ['alpaca_isp'],
  14. long_description = long_description,
  15. classifiers = [
  16. "Development Status :: 3 - Alpha",
  17. "Environment :: Console",
  18. "Intended Audience :: Developers",
  19. "License :: OSI Approved :: Apache Software License",
  20. "Operating System :: MacOS :: MacOS X",
  21. "Operating System :: Microsoft :: Windows",
  22. "Operating System :: POSIX",
  23. "Programming Language :: Python :: 3 :: Only",
  24. "Programming Language :: Python :: 3.6",
  25. "Topic :: Software Development :: Embedded Systems"
  26. ],
  27. install_requires=["pyserial>=3.4", "IntelHex>=2.1"],
  28. entry_points = {
  29. "console_scripts": [
  30. "alpaca_isp=alpaca_isp:main"
  31. ]
  32. }
  33. )