-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
69 lines (65 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from setuptools import setup, find_packages
# Read the contents of README.md
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="automagik",
version=__import__("automagik.version").__version__,
author="NamasteX Labs",
author_email="[email protected]",
description="AI-driven workflow automation with LangFlow integration",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/namastexlabs/automagik",
project_urls={
"Bug Tracker": "https://github.com/namastexlabs/automagik/issues",
"Documentation": "https://github.com/namastexlabs/automagik/tree/main/docs",
},
packages=find_packages(include=['automagik*']),
include_package_data=True,
install_requires=[
'click>=8.0.0',
'sqlalchemy[asyncio]>=2.0.0',
'asyncpg>=0.28.0', # Async PostgreSQL adapter
'python-dotenv>=1.0.0',
'tabulate>=0.9.0',
'croniter>=1.4.1',
'httpx>=0.24.0',
'alembic>=1.12.0', # Database migrations
'fastapi>=0.100.0', # API framework
'uvicorn>=0.23.0', # ASGI server
],
extras_require={
'dev': [
'pytest>=7.0.0',
'pytest-asyncio>=0.21.0',
'black>=23.0.0',
'isort>=5.12.0',
'flake8>=6.1.0',
'mypy>=1.5.0',
'build>=1.0.0',
'twine>=4.0.0',
],
},
entry_points={
'console_scripts': [
'automagik=automagik.cli.cli:main',
],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: FastAPI",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Automation",
],
python_requires='>=3.9',
keywords='automation, workflow, langflow, ai, llm',
)