setup.py 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Copyright 2024 https://github.com/ShishirPatil/gorilla
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. # This is the pypi setup file for Gorilla Execution Engine project
  15. from setuptools import setup, find_packages
  16. with open('requirements.txt') as f:
  17. requirements = f.read().splitlines()
  18. setup(
  19. name="goex",
  20. version="0.0.2",
  21. author="Shishir Patil, Tianjun Zhang, Vivian Fang, Noppapon Chalermchockcharoenkit, Roy Huang, Aaron Hao",
  22. author_email="shishirpatil@berkeley.edu",
  23. url="https://github.com/ShishirPatil/gorilla/",
  24. description="Gorilla Execution Engine CLI",
  25. long_description=open("README.md", "r", encoding="utf-8").read(),
  26. long_description_content_type="text/markdown",
  27. py_modules=["cli"],
  28. packages=find_packages(),
  29. classifiers=[
  30. "Programming Language :: Python :: 3",
  31. "License :: OSI Approved :: Apache Software License",
  32. "Operating System :: OS Independent",
  33. ],
  34. python_requires='>=3.6',
  35. install_requires=requirements,
  36. entry_points={
  37. 'console_scripts': [
  38. 'goex=cli:main',
  39. ],
  40. },
  41. )