File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 1818
1919name = "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
2426setup_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" ,
You can’t perform that action at this time.
0 commit comments