-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (52 loc) · 1.43 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
44
45
46
47
48
49
50
51
52
53
54
# NOTE: Should replace with a pyproject.toml
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), "README.md")) as infile:
long_description = infile.read()
setup(
name="chutes",
version="0.1.43",
description="Chutes development kit and CLI.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rayonlabs/chutes",
author="Jon Durbin",
license_expression="MIT",
packages=find_packages(),
install_requires=[
"aiohttp[speedups]>=3.10,<4",
"backoff>=2.2,<3",
"requests>=2.32",
"loguru==0.7.2",
"fastapi>=0.115",
"uvicorn>=0.32.0",
"pydantic>=2.9,<3",
"pybase64>=1.4.0",
"orjson>=3.10",
"fickling==0.1.3",
"setuptools>=0.75",
"substrate-interface>=1.7.11",
"rich>=13.0.0",
"typer>=0.12.5",
"graval>=0.0.5",
"prometheus-client==0.21.0",
],
extras_require={
"dev": [
"black",
"flake8",
"wheel",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10",
],
entry_points={
"console_scripts": [
"chutes=chutes.cli:app",
],
},
)