diff --git a/README.md b/README.md index df3ad8ab89..6aee5c9424 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # Taipy --> badges -## license +## License Copyright 2022 Avaiga Private Limited Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with diff --git a/setup.py b/setup.py index ba56cc13a9..59727b850c 100644 --- a/setup.py +++ b/setup.py @@ -19,9 +19,8 @@ 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", - "taipy-rest@git+ssh://git@github.com/Avaiga/taipy-rest.git@develop", + "taipy-gui>=1.0,<1.1", + "taipy-rest>=1.0,<1.1", ] extras_require = { @@ -34,27 +33,27 @@ setup( author="Avaiga", - author_email="taipy.dev@avaiga.com", + author_email="dev@taipy.io", python_requires=">=3.8", classifiers=[ - "Development Status :: 2 - Pre-Alpha", "Intended Audience :: Developers", - "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Apache Software 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.", + description="A 360° open-source platform from Python pilots to production-ready web apps.", install_requires=requirements, - license="MIT license", + license="Apache License 2.0", long_description=readme, + long_description_content_type="text/markdown", keywords="taipy", name="taipy", packages=find_packages(include=['taipy']), url="https://github.com/avaiga/taipy", - version="1.0.0.dev", + version="1.0.0", zip_safe=False, extras_require=extras_require, )