12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/usr/bin/env python
- """The setup script."""
- from setuptools import find_packages, setup
- with open("README.md") as readme_file:
- readme = readme_file.read()
- requirements = [
- "taipy-gui@git+ssh://git@github.com/Avaiga/taipy-gui.git@develop",
- "taipy-core@git+ssh://git@github.com/Avaiga/taipy-core.git@develop",
- ]
- setup(
- author="Avaiga",
- author_email="taipy.dev@avaiga.com",
- python_requires=">=3.8",
- classifiers=[
- "Development Status :: 2 - Pre-Alpha",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: MIT License",
- "Natural Language :: English",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- ],
- description="AI Platform for Business Applications.",
- install_requires=requirements,
- license="MIT license",
- long_description=readme,
- keywords="taipy",
- name="taipy",
- packages=find_packages(include=['taipy']),
- url="https://github.com/avaiga/taipy",
- version="1.0.0.dev",
- zip_safe=False,
- )
|