Skip to content

Commit becc5fc

Browse files
ready for pypi
1 parent 9986110 commit becc5fc

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ There are many ways to contribute, from writing tutorials or blog posts, improvi
1010

1111
### Reporting Bugs
1212

13-
If you find a bug, please open an issue on our [GitHub repository](https://github.com/Intugle/intugle/issues). Please include a clear and concise description of the bug, as well as steps to reproduce it.
13+
If you find a bug, please open an issue on our [GitHub repository](https://github.com/Intugle/data-tools/issues). Please include a clear and concise description of the bug, as well as steps to reproduce it.
1414

1515
### Submitting Feature Requests
1616

17-
If you have an idea for a new feature, please open an issue on our [GitHub repository](https://github.com/Intugle/intugle/issues). Please include a clear and concise description of the feature, as well as a justification for why it would be a good addition to the project.
17+
If you have an idea for a new feature, please open an issue on our [GitHub repository](https://github.com/Intugle/data-tools/issues). Please include a clear and concise description of the feature, as well as a justification for why it would be a good addition to the project.
1818

1919
### Writing Code
2020

@@ -66,7 +66,7 @@ If you want to contribute code to the project, please follow the steps below.
6666
git push origin my-new-feature
6767
```
6868
69-
6. Open a pull request on the [Intugle repository](https://github.com/Intugle/intugle/pulls).
69+
6. Open a pull request on the [Intugle repository](https://github.com/Intugle/data-tools/pulls).
7070
7171
## Coding Style
7272

pyproject.toml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,25 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "intugle"
77
version = "0.1.0"
8-
description = "A library for data processing tools."
8+
authors = [
9+
{ name="Intugle", email="[email protected]" },
10+
]
11+
description = "A GenAI-powered Python library for building semantic layers."
912
readme = "README.md"
13+
keywords = ["data", "semantic layer", "genai", "llm", "data profiling", "link prediction", "sql generation"]
1014
requires-python = ">=3.10"
1115
license = { text = "Apache-2.0" }
1216
classifiers = [
1317
"Programming Language :: Python :: 3",
1418
"License :: OSI Approved :: Apache Software License",
1519
"Operating System :: OS Independent",
20+
"Development Status :: 3 - Alpha",
21+
"Intended Audience :: Developers",
22+
"Intended Audience :: Science/Research",
23+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
24+
"Topic :: Software Development :: Libraries :: Python Modules"
1625
]
26+
1727
dependencies = [
1828
"langchain[anthropic,aws,cohere,google-genai,google-vertexai,groq]>=0.3.27",
1929
"langchain-community>=0.3.21",
@@ -44,6 +54,10 @@ dependencies = [
4454
"duckdb>=1.3.2",
4555
]
4656

57+
[project.urls]
58+
"Homepage" = "https://github.com/Intugle/data-tools"
59+
"Bug Tracker" = "https://github.com/Intugle/data-tools/issues"
60+
4761
[dependency-groups]
4862
test = [
4963
"langchain-core>=0.3.74",

0 commit comments

Comments
 (0)