forked from tufo830/Neosgenesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
94 lines (89 loc) · 2.19 KB
/
setup.cfg
File metadata and controls
94 lines (89 loc) · 2.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[metadata]
name = neogenesis-langchain
version = attr: neogenesis_langchain.__version__
description = Neogenesis System integration with LangChain
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/neogenesis/neogenesis-langchain
author = Neogenesis System Team
author_email = neogenesis@example.com
license = MIT
license_file = LICENSE
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Topic :: Scientific/Engineering :: Artificial Intelligence
[options]
packages = find:
python_requires = >=3.8
install_requires =
pydantic>=2.0.0
numpy>=1.21.0
pandas>=1.3.0
typing-extensions>=4.0.0
dataclasses-json>=0.5.0
duckduckgo-search
requests
httpx
fastapi
uvicorn
gunicorn
python-dotenv
include_package_data = True
[options.packages.find]
exclude =
tests*
docs*
examples*
[options.extras_require]
langchain =
langchain>=0.1.0
langchain-core>=0.1.0
redis = redis>=4.0.0
lmdb = lmdb>=1.3.0
mongodb = pymongo>=4.0.0
performance = numba>=0.56.0; scipy>=1.7.0
distributed = dask>=2021.0.0; ray>=1.0.0
ml = scikit-learn>=1.0.0; torch>=1.9.0
dev =
pytest>=7.0.0
pytest-asyncio>=0.21.0
pytest-cov>=4.0.0
black>=22.0.0
isort>=5.10.0
flake8>=4.0.0
mypy>=0.991
pre-commit>=2.20.0
docs =
sphinx>=5.0.0
sphinx-rtd-theme>=1.0.0
sphinx-autoapi>=2.0.0
myst-parser>=0.18.0
full =
neogenesis-langchain[langchain,redis,lmdb,mongodb,performance,distributed,ml]
[options.entry_points]
console_scripts =
neogenesis-demo = neogenesis_langchain.examples.usage_examples:main
# Flake8 configuration
[flake8]
max-line-length = 88
extend-ignore = E203, W503, E501
exclude =
.git,
__pycache__,
build,
dist,
*.egg-info,
.venv,
.tox,
.mypy_cache
per-file-ignores =
__init__.py:F401