in setup.py [0:0]
def setup_package() -> None:
"""Used for installing the Ax package."""
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="ax-platform",
description="Adaptive Experimentation",
author="Facebook, Inc.",
license="MIT",
url="https://github.com/facebook/Ax",
keywords=["Experimentation", "Optimization"],
classifiers=[
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
],
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.7",
install_requires=REQUIRES,
packages=find_packages(),
package_data={
# include all js, css, and html files in the package
"": ["*.js", "*.css", "*.html"]
},
extras_require={
"dev": DEV_REQUIRES,
"mysql": MYSQL_REQUIRES,
"notebook": NOTEBOOK_REQUIRES,
},
use_scm_version={
"write_to": "ax/version.py",
"local_scheme": local_version,
},
setup_requires=["setuptools_scm"],
)