1
0

setup.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #!/usr/bin/env python
  2. """The setup script."""
  3. from setuptools import find_packages, setup
  4. with open("README.md") as readme_file:
  5. readme = readme_file.read()
  6. requirements = [
  7. "taipy-gui@git+ssh://git@github.com/Avaiga/taipy-gui.git@develop",
  8. "taipy-core@git+ssh://git@github.com/Avaiga/taipy-core.git@develop",
  9. "taipy-rest@git+ssh://git@github.com/Avaiga/taipy-rest.git@develop",
  10. ]
  11. setup(
  12. author="Avaiga",
  13. author_email="taipy.dev@avaiga.com",
  14. python_requires=">=3.8",
  15. classifiers=[
  16. "Development Status :: 2 - Pre-Alpha",
  17. "Intended Audience :: Developers",
  18. "License :: OSI Approved :: MIT License",
  19. "Natural Language :: English",
  20. "Programming Language :: Python :: 3",
  21. "Programming Language :: Python :: 3.8",
  22. "Programming Language :: Python :: 3.9",
  23. "Programming Language :: Python :: 3.10",
  24. ],
  25. description="AI Platform for Business Applications.",
  26. install_requires=requirements,
  27. license="MIT license",
  28. long_description=readme,
  29. keywords="taipy",
  30. name="taipy",
  31. packages=find_packages(include=['taipy']),
  32. url="https://github.com/avaiga/taipy",
  33. version="1.0.0.dev",
  34. zip_safe=False,
  35. )