setup.py 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #
  2. # Copyright 2018-2022 Elyra Authors
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. import os
  17. import sys
  18. from glob import glob
  19. from jupyter_packaging import get_data_files
  20. from setuptools import setup, find_packages
  21. long_desc = """
  22. Elyra is a set of AI centric extensions to JupyterLab. It aims to help data scientists,
  23. machine learning engineers and AI developer’s through the model development life cycle complexities.
  24. """
  25. here = os.path.abspath(os.path.dirname(__file__))
  26. setup_args = dict(
  27. name="{{package-name}}",
  28. version="{{version}}",
  29. url="https://github.com/elyra-ai/elyra",
  30. description="{{description}}",
  31. long_description=long_desc,
  32. author="Elyra Maintainers",
  33. license="Apache License Version 2.0",
  34. data_files=get_data_files([{{data - files}}]),
  35. packages=find_packages(),
  36. install_requires=[{{install - requires}}],
  37. include_package_data=True,
  38. classifiers=(
  39. "License :: OSI Approved :: Apache Software License",
  40. "Operating System :: OS Independent",
  41. "Topic :: Scientific/Engineering",
  42. "Topic :: Scientific/Engineering :: Artificial Intelligence",
  43. "Topic :: Software Development",
  44. "Topic :: Software Development :: Libraries",
  45. "Topic :: Software Development :: Libraries :: Python Modules",
  46. "Programming Language :: Python :: 3.7",
  47. "Programming Language :: Python :: 3.8",
  48. "Programming Language :: Python :: 3.9",
  49. "Programming Language :: Python :: 3.10",
  50. ),
  51. entry_points={},
  52. )
  53. if __name__ == "__main__":
  54. setup(**setup_args)