Skip to content

Commit b4ad9c6

Browse files
committed
Updated setup.py
1 parent 89dbb6c commit b4ad9c6

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ $(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+
$(PYTHON_VERSION) setup.py sdist
13+
# Assuming you have twine already in the sdist
14+
pip install twine
15+
twine upload dist/*
16+
1117
# typically, phony make targets are imperatives.
1218
lint: install
1319
tox -e lint

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@
1616
version="0.1.0",
1717
license="Apache",
1818
author="NavAbility",
19+
author_email="[email protected]",
1920
package_dir={"": "src"},
2021
include_package_data=True,
2122
packages=find_packages("src", exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
2223
# entry_points={"console_scripts": ["navability = navability.main:cli"]},
2324
python_requires=">=3.5",
2425
download_url="https://github.com/NavAbility/NavAbilitySDK.py/archive/refs/tags/v0.1.0.tar.gz",
25-
long_description="NavAbility SDK",
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].""",
2628
install_requires=[
2729
"click>=8.0.0,<9",
2830
"gql[all]==3.0.0a6",

0 commit comments

Comments
 (0)