-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
70 lines (67 loc) · 2.23 KB
/
Copy pathsetup.py
File metadata and controls
70 lines (67 loc) · 2.23 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
#!/usr/bin/env python3
"""Setup script for Agentic Linux Assistant."""
from setuptools import setup, find_packages
from pathlib import Path
# Read the contents of README file
this_directory = Path(__file__).parent
long_description = (this_directory / "PRD.md").read_text()
setup(
name="agentic-assistant",
version="1.0.0",
author="Agentic Linux Team",
author_email="maintainer@agentic-linux.org",
description="System-native AI assistant for Ubuntu Linux",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/agentic-linux/assistant",
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Desktop Environment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: System :: Systems Administration",
],
python_requires=">=3.9",
install_requires=[
"pynput>=1.7.0",
"requests>=2.28.0",
"PyGObject>=3.42.0",
"aiohttp>=3.8.0",
],
extras_require={
"dev": [
"pytest>=6.0",
"pytest-asyncio>=0.18.0",
"black>=22.0",
"flake8>=4.0",
"mypy>=0.950",
],
},
entry_points={
"console_scripts": [
"agentic-assistant=usr.share.agentic_assistant.src.daemon:main",
],
},
include_package_data=True,
package_data={
"": [
"usr/share/agentic-assistant/config/*.json",
"usr/share/agentic-assistant/themes/*.css",
"systemd/*.service",
"config/*.desktop",
],
},
data_files=[
("share/applications", ["config/agentic-assistant.desktop"]),
("lib/systemd/system", ["systemd/agentic-assistant.service"]),
("share/agentic-assistant/config", ["usr/share/agentic-assistant/config/default.json"]),
],
zip_safe=False,
)