We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1401d3 commit 896b531Copy full SHA for 896b531
requirements.txt
setup.py
@@ -6,18 +6,15 @@
6
with open(os.path.join(this_directory, "README.md"), encoding="utf-8") as f:
7
long_description = f.read()
8
9
-with open(os.path.join(this_directory, "requirements.txt")) as f:
10
- requirements = f.read().splitlines()
11
-
12
setup(
13
name="agixtsdk",
14
- version="0.0.1",
+ version="0.0.2",
15
description="The AGiXT SDK for Python.",
16
long_description=long_description,
17
long_description_content_type="text/markdown",
18
author="Josh XT",
19
author_email="josh@devxt.com",
20
- packages=find_packages,
+ packages=find_packages(),
21
python_requires=">=3.10",
22
- install_requires=requirements,
+ install_requires=["requests"],
23
)
0 commit comments