Skip to content

Commit 896b531

Browse files
committed
Fix Setup
1 parent f1401d3 commit 896b531

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,15 @@
66
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
77
long_description = f.read()
88

9-
with open(os.path.join(this_directory, "requirements.txt")) as f:
10-
requirements = f.read().splitlines()
11-
129
setup(
1310
name="agixtsdk",
14-
version="0.0.1",
11+
version="0.0.2",
1512
description="The AGiXT SDK for Python.",
1613
long_description=long_description,
1714
long_description_content_type="text/markdown",
1815
author="Josh XT",
1916
author_email="josh@devxt.com",
20-
packages=find_packages,
17+
packages=find_packages(),
2118
python_requires=">=3.10",
22-
install_requires=requirements,
19+
install_requires=["requests"],
2320
)

0 commit comments

Comments
 (0)