-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (61 loc) · 2.09 KB
/
setup.py
File metadata and controls
63 lines (61 loc) · 2.09 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
from setuptools import setup, find_packages
from pathlib import Path
# Read the README file for long description
readme_path = Path(__file__).parent / "README.md"
long_description = ""
if readme_path.exists():
with open(readme_path, encoding="utf-8") as f:
long_description = f.read()
setup(
name="geointel",
version="0.2.0",
packages=find_packages(exclude=["tests", "examples"]),
include_package_data=True,
package_data={
"geointel": ["../geointel_ui_template/*"],
},
install_requires=[
"requests>=2.31.0",
"flask>=2.3.0",
"flask-cors>=4.0.0",
],
extras_require={
"web": [
"flask>=2.3.0",
"flask-cors>=4.0.0",
],
},
python_requires=">=3.8",
entry_points={
"console_scripts": [
"geointel=geointel.cli:main",
],
},
author="Atilla",
author_email="atilla@tuta.io",
description="AI-powered geolocation analysis using Google Gemini 3 with multi-model support",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/atiilla/geointel",
project_urls={
"Bug Reports": "https://github.com/atiilla/geointel/issues",
"Source": "https://github.com/atiilla/geointel",
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"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",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Recognition",
],
keywords="geolocation, ai, gemini, image-analysis, computer-vision, osint",
)