-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (41 loc) · 1.25 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import sys
from setuptools import setup, find_packages
extras = {
"cli": ["typer"],
"decorators_only": [], # No extra dependencies for noop decorator
}
# Check if the noop_decorators_only option is being used
if "decorators_only" in sys.argv:
packages = find_packages(include=["acidrunner.decorators"]) # Only include bucketlib
else:
packages = find_packages(exclude=["tests*", "__pycache__"]) # Full package installation
setup(
name="acidrunner",
version="0.1.0",
description="A benchmarking and testing suite focused on AI development",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="drat3",
author_email="[email protected]",
url="https://github.com/dRAT3/AcidRunner",
packages=packages,
include_package_data=True,
install_requires=[
"pyyaml",
"numpy",
"typer",
"asyncio",
],
extras_require=extras,
entry_points={
"console_scripts": [
"acidrunner=acidrunner_cli.cli:app",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)