forked from robmarkcole/deepstack-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 656 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 656 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.6"
REQUIRES = ["requests"]
setup(
name="deepstack-python",
version=VERSION,
url="https://github.com/robmarkcole/deepstack-python",
author="Robin Cole",
author_email="robmarkcole@gmail.com",
description="Unofficial python API for DeepStack",
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",
],
)