-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
51 lines (49 loc) · 1.31 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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="amcat4",
version="4.0.15",
description="API for AmCAT4 Text Analysis",
author="Wouter van Atteveldt",
author_email="[email protected]",
packages=["amcat4", "amcat4.api", "amcat4.preprocessing"],
include_package_data=True,
zip_safe=False,
keywords=["API", "text"],
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Text Processing",
],
install_requires=[
"fastapi[all]",
"elasticsearch~=8.6",
"python-multipart",
"python-dotenv",
"requests",
"authlib",
"pydantic[email]",
"pydantic-settings",
"typing_extensions",
"uvicorn",
"requests",
"class_doc",
"mypy",
"minio",
"jsonpath_ng",
],
extras_require={
"dev": [
"pytest",
"pytest-httpx",
"mypy",
"flake8",
"responses",
"pre-commit",
"types-requests",
"pytest-asyncio",
"pytest-minio-mock @ git+ssh://[email protected]/vanatteveldt/pytest-minio-mock.git",
]
},
entry_points={"console_scripts": ["amcat4 = amcat4.__main__:main"]},
)