Ross McNairn commited on
Commit
57fa698
·
1 Parent(s): 166d794
hello_wordsmith/{hello_wordsmith.py → wordsmith.py} RENAMED
@@ -1,5 +1,3 @@
1
- #!/usr/bin/env python
2
-
3
  # Standard library imports
4
  import os
5
 
 
 
 
1
  # Standard library imports
2
  import os
3
 
setup.py CHANGED
@@ -6,7 +6,7 @@ setup(
6
  description="A simple Python package to interface with llama-index RAG over wordsmith data.",
7
  long_description=open("README.md").read(),
8
  long_description_content_type="text/markdown",
9
- url="https://huggingface.co/datasets/derek-at-work/test/source env/bin/activate",
10
  author="Derek Johnston",
11
  author_email="derek@wordsmith.ai",
12
  license="MIT",
@@ -24,8 +24,8 @@ setup(
24
  ],
25
  entry_points={
26
  "console_scripts": [
27
- "hello-wordsmith=hello_wordsmith.hello_wordsmith:main",
28
  ],
29
  },
30
- python_requires=">=3.6",
31
  )
 
6
  description="A simple Python package to interface with llama-index RAG over wordsmith data.",
7
  long_description=open("README.md").read(),
8
  long_description_content_type="text/markdown",
9
+ url="https://huggingface.co/datasets/derek-at-work/test/",
10
  author="Derek Johnston",
11
  author_email="derek@wordsmith.ai",
12
  license="MIT",
 
24
  ],
25
  entry_points={
26
  "console_scripts": [
27
+ "hello-wordsmith=hello_wordsmith.wordsmith:main",
28
  ],
29
  },
30
+ python_requires=">=3.8",
31
  )