forked from retrofor/iamai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.12 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
import setuptools
with open("README.md", "rb") as fh:
long_description = fh.read().decode("utf-8")
setuptools.setup(
name="iamai",
version="5.0.2",
url="https://github.com/retrofor/iamai",
license="MIT",
author="简律纯",
author_email="[email protected]",
description="Cross-platform robot framework, mainly used for machine learning.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Code Generators",
"Topic :: Communications :: Chat",
],
python_requires=">=3.8",
install_requires=[
"flask",
"pydantic",
"loguru",
"aiohttp",
"tomli",
"typing-extensions",
"pydantic",
"watchfiles",
],
)