A REST API for cloud embedded board reservation.
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.
 
 

43 lines
1.0 KiB

  1. # python setup.py --dry-run --verbose install
  2. import os.path
  3. from setuptools import setup, find_packages
  4. from distutils.core import setup
  5. setup(
  6. name='bitelab',
  7. version='0.1.0',
  8. author='John-Mark Gurney',
  9. author_email='jmg@FreeBSD.org',
  10. packages=find_packages(),
  11. #url='',
  12. license='BSD',
  13. description='Build Integrity and Testing of Embedded systems LAB',
  14. #download_url='',
  15. long_description=open('README.md').read(),
  16. python_requires='>=3.8',
  17. install_requires=[
  18. 'aioconsole', # for aioconsole.stream only
  19. 'databases[sqlite]',
  20. 'fastapi',
  21. 'httpx',
  22. 'hypercorn', # option, for server only?
  23. 'orm',
  24. 'pydantic[dotenv]',
  25. 'ucl',
  26. 'websockets',
  27. 'wsfwd @ git+https://www.funkthat.com/gitea/jmg/wsfwd.git',
  28. ],
  29. extras_require = {
  30. # requests needed for fastpi.testclient.TestClient
  31. 'dev': [ 'coverage', 'requests' ],
  32. },
  33. entry_points={
  34. 'console_scripts': [
  35. 'bitelab = bitelab.__main__:main',
  36. ]
  37. }
  38. )