-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
55 lines (47 loc) · 1.19 KB
/
setup.cfg
File metadata and controls
55 lines (47 loc) · 1.19 KB
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
[metadata]
name = promptware
version = attr: version.__version__
description = Software 3.0
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/ExpressAI/Promptware
author = Express AI
license = Apache License
classifiers =
Intended Audience :: Developers
Topic :: Text Processing
Topic :: Scientific/Engineering :: Artificial Intelligence
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
include_package_data = True
install_requires =
nltk>=3.2
numpy
scipy
matplotlib
scikit-learn
pre-commit
tqdm
openai
datalabs
cohere
python-dotenv
transformers
torch
[flake8]
application-import-names = promptware
exclude = __pycache__, datasets
extend-ignore = E203, BLK100, W503, FI10, FI11, FI12, FI13, FI14, FI15, FI16, FI17, FI58
filename = ./promptware/*.py, ./setup.py
max-line-length = 88
[isort]
filter_files = true
force_sort_within_sections = true
multi_line_output = 3
order_by_type = false
profile = black
src_paths = promptware