From 59bd5257f834ea2f459eeeef821ffa2f7c9a5117 Mon Sep 17 00:00:00 2001 From: Yusuf Olokoba Date: Wed, 20 Mar 2024 13:50:56 -0400 Subject: [PATCH] Remove `setup.py` --- setup.py | 66 -------------------------------------------------------- 1 file changed, 66 deletions(-) delete mode 100644 setup.py diff --git a/setup.py b/setup.py deleted file mode 100644 index 967eb30..0000000 --- a/setup.py +++ /dev/null @@ -1,66 +0,0 @@ -# -# Function -# Copyright © 2024 NatML Inc. All Rights Reserved. -# - -from setuptools import find_packages, setup - -# Get readme -with open("README.md", "r") as readme: - long_description = readme.read() - -# Get version -with open("fxn/version.py") as version_source: - gvars = {} - exec(version_source.read(), gvars) - version = gvars["__version__"] - -# Setup -setup( - name="fxn", - version=version, - author="NatML Inc.", - author_email="hi@fxn.ai", - description="Run on-device and cloud AI prediction functions in Python. Register at https://fxn.ai.", - long_description=long_description, - long_description_content_type="text/markdown", - license="Apache License 2.0", - python_requires=">=3.9", - install_requires=[ - "aiohttp", - "magika", - "numpy", - "pillow", - "pydantic>=2.0", - "requests", - "rich", - "typer" - ], - url="https://fxn.ai", - packages=find_packages( - include=["fxn", "fxn.*"], - exclude=["test", "examples"] - ), - include_package_data=True, - package_data={ - "fxn.libs.macos": ["*.dylib"], - "fxn.libs.windows": ["*.dll"], - "fxn.libs.linux": ["*.so"] - }, - entry_points={ - "console_scripts": [ - "fxn=fxn.cli.__init__:app" - ] - }, - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: Apache Software License", - "Operating System :: OS Independent", - "Topic :: Scientific/Engineering :: Image Recognition", - "Topic :: Software Development :: Libraries", - ], - project_urls={ - "Documentation": "https://docs.fxn.ai", - "Source": "https://github.com/fxnai/fxn" - }, -) \ No newline at end of file