forked from robmarkcole/deepstack-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 778 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 778 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
from setuptools import setup, find_packages
VERSION = "0.2"
REQUIRES = ["requests"]
setup(
name = "codeproject-ai-api",
version = VERSION,
url = "https://github.com/codeproject/codeproject-ai-api",
author = "CodeProject",
author_email = "info@codeproject.com",
description = "Provides a simple SDK for the CodeProject.AI Server API",
install_requires = REQUIRES,
packages = find_packages(),
license = "Apache License, Version 2.0",
python_requires = ">=3.7",
classifiers = [
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
],
)