-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 1.07 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
from setuptools import setup, find_packages
from os.path import dirname, join
# Get the long description from the README file
README_PATH = join(dirname(__file__), "docs/README.md")
with open(README_PATH, "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name = "text_excuse_generator",
version = "1.1.5.1",
author = "Huck Dirksmeier",
author_email = "Huckdirks@gmail.com",
description = "Uses Open AI's GPT-3.5 model to create an excuse from given parameters & text it",
long_description = LONG_DESCRIPTION,
long_description_content_type = "text/markdown",
url = "https://github.com/Huckdirks/text-excuse-generator",
packages = find_packages(),
install_requires = ["python-dotenv", "twilio", "openai", "phonenumbers"],
keywords = ["text excuse generator", "openai", "twilio", "text message", "GPT-3.5"],
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires = ">=3.8",
py_modules = ["text_excuse_generator"]
)