-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (40 loc) · 1.51 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="geniusrise-prompt-actions",
version="0.1.0",
packages=find_packages(exclude=["tests", "tests.*"]),
install_requires=requirements,
python_requires=">=3.10",
author="ixaxaar",
author_email="ixaxaar@geniusrise.ai",
description="listeners bolts for geniusrise",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/geniusrise/geniusrise-prompt-actions",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
keywords="mlops, llm, geniusrise, machine learning, data processing",
project_urls={
"Bug Reports": "https://github.com/geniusrise/geniusrise-prompt-actions/issues",
"Source": "https://github.com/geniusrise/geniusrise-prompt-actions",
"Documentation": "https://docs.geniusrise.ai/",
},
package_data={
"geniusrise": [],
},
extras_require={
"dev": ["check-manifest"],
"test": ["coverage"],
},
)