Skip to content

Commit db699e5

Browse files
authored
Merge pull request #19 from NavAbility/release_info
Release info for v0.1.0
2 parents ceb2f45 + a7fd4b5 commit db699e5

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,3 +116,5 @@ cython_debug/
116116

117117
venv/
118118
venv_test/
119+
120+
sandbox.py

Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@ $(VIRTUAL_ENV_DIR):
88
$(PYTHON_VERSION) -m venv $(VIRTUAL_ENV_DIR)
99
$(VIRTUAL_ENV_DIR)/bin/python setup.py install
1010

11+
release: $(VIRTUAL_ENV_DIR)
12+
rm -rf dist
13+
$(PYTHON_VERSION) setup.py sdist
14+
# Assuming you have twine already in the sdist
15+
pip install twine
16+
twine upload dist/*
17+
1118
# typically, phony make targets are imperatives.
1219
lint: install
1320
tox -e lint

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Note that this SDK and the related API are still in development. Please let us k
55

66
# Installation
77

8-
We'll register the package shortly, but for the moment install the NavAbilitySDK directly from the repo:
8+
Install the NavAbilitySDK using pip:
99

1010
```bash
11-
pip install git+ssh://[email protected]/NavAbility/NavAbilitySDK.py.git
11+
pip install navabilitysdk
1212
```
1313

1414
# Notes and FAQ

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Inside of setup.cfg
2+
[metadata]
3+
description-file = README.md

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,18 @@
1313

1414
setup(
1515
name="navabilitysdk",
16-
version="0.0.1",
16+
version="0.1.0",
17+
license="Apache",
1718
author="NavAbility",
19+
author_email="[email protected]",
1820
package_dir={"": "src"},
1921
include_package_data=True,
2022
packages=find_packages("src", exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
21-
entry_points={"console_scripts": ["navability = navability.main:cli"]},
23+
# entry_points={"console_scripts": ["navability = navability.main:cli"]},
2224
python_requires=">=3.5",
23-
long_description="NavAbility SDK",
25+
download_url="https://github.com/NavAbility/NavAbilitySDK.py/archive/refs/tags/v0.1.0.tar.gz",
26+
long_description="""NavAbility SDK: Access NavAbility Cloud factor graph features from Python.
27+
Note that this SDK and the related API are still in development. Please let us know if you have any issues at [email protected].""",
2428
install_requires=[
2529
"click>=8.0.0,<9",
2630
"gql[all]==3.0.0a6",

0 commit comments

Comments
 (0)