-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 885 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 885 Bytes
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
#!/usr/bin/python
# -*- coding: utf-8 -*-
__author__ = "bibow"
from setuptools import find_packages, setup
setup(
name="Openai-Assistant-Engine",
version="0.0.1",
author="Idea Bosque",
author_email="ideabosque@gmail.com",
description="Openai Assistant Engine",
long_description=__doc__,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
platforms="Linux",
install_requires=[
"SilvaEngine-Utility",
"SilvaEngine-DynamoDB-Base",
"graphene",
"openai",
],
classifiers=[
"Programming Language :: Python",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)