Skip to content

Commit 8ebc3a7

Browse files
authored
refactored name of the package (#28)
1 parent 43cf810 commit 8ebc3a7

File tree

8 files changed

+16
-16
lines changed

8 files changed

+16
-16
lines changed

.cookiecutterrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ default_context:
2727
command_line_interface: "click"
2828
command_line_interface_bin_name: "datapilot"
2929
coveralls: "no"
30-
distribution_name: "altimate-datapilot"
30+
distribution_name: "altimate-datapilot-cli"
3131
3232
formatter_quote_style: "double"
3333
full_name: "Anand Gupta"

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Development
3737

3838
To set up `datapilot` for local development:
3939

40-
1. Fork `datapilot <https://github.com/AltimateAI/datapilot>`_
40+
1. Fork `datapilot <https://github.com/AltimateAI/datapilot-cli>`_
4141
(look for the "Fork" button).
4242
2. Clone your fork locally::
4343

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Required Python Version: Python 3.7 or higher.
1818
DataPilot is available as a Python package and can be easily installed using pip.
1919

2020
```Shell
21-
pip install altimate-datapilot
21+
pip install altimate-datapilot-cli
2222
```
2323

2424
### Usage

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Overview
2020
:target: https://datapilot.readthedocs.io/
2121
:alt: Documentation Status
2222

23-
.. |github-actions| image:: https://github.com/AltimateAI/datapilot/actions/workflows/github-actions.yml/badge.svg
23+
.. |github-actions| image:: https://github.com/AltimateAI/datapilot-cli/actions/workflows/github-actions.yml/badge.svg
2424
:alt: GitHub Actions Build Status
2525
:target: https://github.com/AltimateAI/datapilot/actions
2626

@@ -42,11 +42,11 @@ Installation
4242

4343
::
4444

45-
pip install altimate-datapilot
45+
pip install altimate-datapilot-cli
4646

4747
You can also install the in-development version with::
4848

49-
pip install https://github.com/AltimateAI/datapilot/archive/main.zip
49+
pip install https://github.com/AltimateAI/datapilot-cli/archive/main.zip
5050

5151

5252
Documentation

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@
2020
pygments_style = "trac"
2121
templates_path = ["."]
2222
extlinks = {
23-
"issue": ("https://github.com/AltimateAI/datapilot/issues/%s", "#"),
24-
"pr": ("https://github.com/AltimateAI/datapilot/pull/%s", "PR #"),
23+
"issue": ("https://github.com/AltimateAI/datapilot-cli/issues/%s", "#"),
24+
"pr": ("https://github.com/AltimateAI/datapilot-cli/pull/%s", "PR #"),
2525
}
2626
html_theme = "sphinx_rtd_theme"
2727
# html_theme_path = [furo.get_html_theme_path()]
2828
# html_theme_options = {
29-
# "githuburl": "https://github.com/AltimateAI/datapilot/",
29+
# "githuburl": "https://github.com/AltimateAI/datapilot-cli/",
3030
# }
3131

3232
html_use_smartypants = True

docs/hooks.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pip install pre-commit
1919

2020
```
2121
repos:
22-
- repo: https://github.com/AltimateAI/datapilot
22+
- repo: https://github.com/AltimateAI/datapilot-cli
2323
rev: <revision>
2424
hooks:
2525
- id: datapilot_run_dbt_checks
@@ -46,6 +46,6 @@ If you want to manually run all pre-commit hooks on a repository, run `pre-commi
4646
Feedback and Contributions
4747
--------------------------
4848

49-
If you encounter any issues or have suggestions for improvements, please feel free to open an issue or pull request on the DataPilot GitHub repository at https://github.com/AltimateAI/datapilot.
49+
If you encounter any issues or have suggestions for improvements, please feel free to open an issue or pull request on the DataPilot GitHub repository at https://github.com/AltimateAI/datapilot-cli.
5050

5151
Thank you for using DataPilot!

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To install DataPilot, open your CLI and run the following command:
1818

1919
.. code-block:: shell
2020
21-
pip install altimate-datapilot
21+
pip install altimate-datapilot-cli
2222
2323
This command will download and install the latest version of DataPilot along with its dependencies.
2424

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ def read(*names, **kwargs):
1212

1313

1414
setup(
15-
name="altimate-datapilot",
15+
name="altimate-datapilot-cli",
1616
version="0.0.8",
1717
license="MIT",
1818
description="Assistant for Data Teams",
1919
long_description="{}\n{}".format(
2020
re.compile("^.. start-badges.*^.. end-badges", re.M | re.S).sub("", read("README.rst")),
2121
re.sub(":[a-z]+:`~?(.*?)`", r"``\1``", read("CHANGELOG.rst")),
2222
),
23-
author="Anand Gupta",
23+
author="Altimate Inc",
2424
author_email="[email protected]",
25-
url="https://github.com/AltimateAI/datapilot",
25+
url="https://github.com/AltimateAI/datapilot-cli",
2626
packages=find_packages("src"),
2727
package_dir={"": "src"},
2828
py_modules=[path.stem for path in Path("src").glob("*.py")],
@@ -55,7 +55,7 @@ def read(*names, **kwargs):
5555
project_urls={
5656
"Documentation": "https://datapilot.readthedocs.io/",
5757
"Changelog": "https://datapilot.readthedocs.io/en/latest/changelog.html",
58-
"Issue Tracker": "https://github.com/AltimateAI/datapilot/issues",
58+
"Issue Tracker": "https://github.com/AltimateAI/datapilot-cli/issues",
5959
},
6060
keywords=[
6161
# eg: "keyword1", "keyword2", "keyword3",

0 commit comments

Comments
 (0)