In-system programming tool for LPC microcontrollers
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.

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. )