|
@@ -2,7 +2,7 @@
|
|
|
|
|
|
"""The setup script."""
|
|
"""The setup script."""
|
|
|
|
|
|
-from setuptools import find_packages, setup, find_namespace_packages
|
|
|
|
|
|
+from setuptools import find_packages, setup
|
|
|
|
|
|
with open("README.md") as readme_file:
|
|
with open("README.md") as readme_file:
|
|
readme = readme_file.read()
|
|
readme = readme_file.read()
|
|
@@ -12,10 +12,6 @@ requirements = [
|
|
"taipy-core@git+ssh://git@github.com/Avaiga/taipy-core.git@develop",
|
|
"taipy-core@git+ssh://git@github.com/Avaiga/taipy-core.git@develop",
|
|
]
|
|
]
|
|
|
|
|
|
-extras_require = {
|
|
|
|
- "airflow": ["taipy-airflow@git+ssh://git@github.com/Avaiga/taipy-airflow.git@develop"],
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
setup(
|
|
setup(
|
|
author="Avaiga",
|
|
author="Avaiga",
|
|
author_email="taipy.dev@avaiga.com",
|
|
author_email="taipy.dev@avaiga.com",
|
|
@@ -34,13 +30,11 @@ setup(
|
|
install_requires=requirements,
|
|
install_requires=requirements,
|
|
license="MIT license",
|
|
license="MIT license",
|
|
long_description=readme,
|
|
long_description=readme,
|
|
- include_package_data=True,
|
|
|
|
keywords="taipy",
|
|
keywords="taipy",
|
|
name="taipy",
|
|
name="taipy",
|
|
packages=find_packages(include=['taipy']),
|
|
packages=find_packages(include=['taipy']),
|
|
url="https://github.com/avaiga/taipy",
|
|
url="https://github.com/avaiga/taipy",
|
|
- version="0.1.2",
|
|
|
|
|
|
+ version="1.0.0.dev",
|
|
zip_safe=False,
|
|
zip_safe=False,
|
|
- extras_require=extras_require,
|
|
|
|
)
|
|
)
|
|
|
|
|