-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.cfg
67 lines (61 loc) · 1.46 KB
/
setup.cfg
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
55
56
57
58
59
60
61
62
63
64
65
66
67
[metadata]
name = chatstream
version = attr: chatstream.__version__
author = Winston Chang
author_email = winston@posit.co
url = https://github.com/rstudio/chatstream
description = An AI chat module for Shiny for Python.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files = LICENSE
platforms = any
classifiers =
Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
[options]
python_requires = >=3.9
packages = find:
test_suite = tests
include_package_data = True
setup_requires =
setuptools
install_requires =
shiny>=0.3.3
openai>=1.13.3;platform_system!="Emscripten"
tiktoken
tests_require =
pytest>=3
zip_safe = False
[options.extras_require]
dev =
black>=23.1.0
flake8>=6.0.0
isort>=5.10.1
pyright>=1.1.244
wheel
[options.packages.find]
include = chatstream, chatstream.*
[options.package_data]
chatstream = py.typed
[flake8]
# E302: Expected 2 blank lines
# E501: Line too long
# W503: Line break occurred before a binary operator
# E731: Do not assign a lambda expression, use a def
ignore = E302, E501, W503, E731
extend_exclude = docs, .venv, venv, typings, build
[isort]
profile=black
skip=
__init__.py
typings/
.venv
venv
.tox
build