-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (59 loc) · 1.83 KB
/
Copy pathsetup.py
File metadata and controls
61 lines (59 loc) · 1.83 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="anchor-audit",
version="5.0.8",
description="The Federated Governance Engine for AI (Universal Multi-Language)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AnimusLab/Anchor",
author="Tanishq",
author_email="tan@animuslab.dev",
packages=find_packages(),
include_package_data=True,
package_data={
"anchor": [
"core/resources/*.example",
"core/resources/*.png",
"governance/**/*.anchor",
"governance/examples/*",
"governance/mitigation.anchor",
"governance/constitution.anchor",
],
},
install_requires=[
"click",
"pyyaml",
"tree-sitter>=0.22.0",
"tree-sitter-python",
"tree-sitter-typescript",
"tree-sitter-go",
"tree-sitter-java",
"tree-sitter-rust",
"pydantic-settings>=2.0.0",
"wrapt",
"requests",
"GitPython",
"pyahocorasick",
],
extras_require={
"dev": ["pytest", "black", "mypy"],
"all": ["openai", "anthropic", "google-generativeai", "langchain",
"ollama", "groq", "cohere", "mistralai", "transformers", "httpx"],
},
entry_points={
'console_scripts': [
'anchor=anchor.cli:cli',
],
},
python_requires='>=3.8',
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)