setup.py 1.1 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. ]
  10. setup(
  11. author="Avaiga",
  12. author_email="taipy.dev@avaiga.com",
  13. python_requires=">=3.8",
  14. classifiers=[
  15. "Development Status :: 2 - Pre-Alpha",
  16. "Intended Audience :: Developers",
  17. "License :: OSI Approved :: MIT License",
  18. "Natural Language :: English",
  19. "Programming Language :: Python :: 3",
  20. "Programming Language :: Python :: 3.8",
  21. "Programming Language :: Python :: 3.9",
  22. "Programming Language :: Python :: 3.10",
  23. ],
  24. description="AI Platform for Business Applications.",
  25. install_requires=requirements,
  26. license="MIT license",
  27. long_description=readme,
  28. keywords="taipy",
  29. name="taipy",
  30. packages=find_packages(include=['taipy']),
  31. url="https://github.com/avaiga/taipy",
  32. version="1.0.0.dev",
  33. zip_safe=False,
  34. )