Skip to content

Commit 2853d53

Browse files
committed
Version 1.0.2
1 parent f1aabef commit 2853d53

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,23 @@
1818

1919
name = "aitk"
2020

21-
with open("README.md", "r") as fh:
21+
HERE = os.path.abspath(os.path.dirname(__file__))
22+
23+
with open(os.path.join(HERE, "README.md"), "r") as fh:
2224
long_description = fh.read()
2325

2426
setup_args = dict(
2527
name=name,
26-
version="1.0.1",
28+
version="1.0.2",
2729
url="https://github.com/ArtificialIntelligenceToolkit/%s" % name,
2830
author="Douglas Blank",
2931
description="Python tools for AI",
3032
long_description=long_description,
3133
long_description_content_type="text/markdown",
3234
install_requires=[
33-
"aitk.robots>=0.7.4",
34-
"aitk.networks>=0.2.4",
35-
"aitk.utils>=0.0.4"
35+
"aitk.robots>=0.7.5",
36+
"aitk.networks>=0.2.5",
37+
"aitk.utils>=0.0.5"
3638
],
3739
python_requires=">=3.6",
3840
license="BSD-3-Clause",

0 commit comments

Comments
 (0)