-
Notifications
You must be signed in to change notification settings - Fork 129
/
setup.py
49 lines (46 loc) · 1.21 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
from setuptools import setup, find_packages
VERSION = "0.0.3-alpha.0"
PACKAGE_NAME = "carefree-drawboard"
DESCRIPTION = "🎨 Infinite Drawboard in Python"
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
setup(
name=PACKAGE_NAME,
version=VERSION,
packages=find_packages(exclude=("tests",)),
include_package_data=True,
entry_points={"console_scripts": ["cfdraw = cfdraw.cli:cli"]},
install_requires=[
"rich",
"tqdm",
"regex",
"typer",
"future",
"pathos",
"pillow",
"psutil",
"aiohttp",
"uvicorn",
"filelock",
"networkx",
"aiofiles",
"gunicorn",
"requests",
"watchdog",
"matplotlib",
"websockets",
"safetensors",
"python-multipart",
"numpy>=1.22.3",
"fastapi>=0.95.1",
"pydantic>=2.0.0",
"websockets>=12.0",
"charset-normalizer==2.1.0",
],
author="carefree0910",
author_email="syameimaru.saki@gmail.com",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
keywords="python carefree-learn drawboard",
)