Skip to content

Commit a3b8309

Browse files
author
Gianpaolo Caprara
committed
__version__ from __init__ file.
1 parent 0548601 commit a3b8309

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import pathlib
22
from setuptools import setup
3+
from RobotFrameworkElasticSearchLibrary import __version__
34

45
# The directory containing this file
56
HERE = pathlib.Path(__file__).parent
@@ -13,12 +14,12 @@
1314
# This call to setup() does all the work
1415
setup(
1516
name="RobotFrameworkElasticSearchLibrary",
16-
version="0.0.1",
17+
version=__version__,
1718
description="Robot Framework ElasticSearch library.",
1819
long_description=README,
1920
long_description_content_type="text/markdown",
2021
url="https://github.com/gianpaolocaprara/robotframework-elasticsearch",
21-
download_url = '',
22+
download_url = f'https://github.com/gianpaolocaprara/robotframework-elasticsearch/archive/{__version__}.tar.gz',
2223
author="Gianpaolo Caprara",
2324
author_email="gianpaolo.caprara@gmail.com",
2425
license="MIT",

0 commit comments

Comments
 (0)