Skip to content

Commit da6a61c

Browse files
committed
Fix problems with setup.py
1 parent 49cb528 commit da6a61c

File tree

8 files changed

+5
-5
lines changed

8 files changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
from setuptools import setup # type: ignore
1+
from setuptools import find_packages, setup # type: ignore
22

33

44
setup(
55
name="askai",
6-
version="1.0.1",
6+
version="1.0.2",
77
author="Max Fischer",
88
long_description=open('README.md').read(),
99
long_description_content_type="text/markdown",
1010
license="MIT",
1111
url="https://github.com/maxvfischer/askai",
12-
download_url="https://github.com/maxvfischer/askai/archive/refs/tags/v1.0.1.tar.gz",
13-
py_modules=["src"],
12+
download_url="https://github.com/maxvfischer/askai/archive/refs/tags/v1.0.2.tar.gz",
13+
package_dir={"askai": "src/askai"},
1414
install_requires=[
1515
"click==8.1.3",
1616
"openai==0.25.0",
1717
"PyYAML==6.0",
1818
],
1919
entry_points="""
2020
[console_scripts]
21-
askai=src.entrypoint_askai:askai
21+
askai=askai.entrypoint_askai:askai
2222
"""
2323
)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)