Skip to content

Commit f1aabef

Browse files
committed
Bring versions up to date
1 parent 12883b1 commit f1aabef

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

setup.py

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# -*- coding: utf-8 -*-
2-
# **************************************************
2+
# *******************************************************
33
# aitk: Python tools for AI
44
#
5-
# Copyright (c) 2021 ArtificialIntelligenceToolkit
5+
# Copyright (c) 2021 AITK Developers
66
#
77
# https://github.com/ArtificialIntelligenceToolkit/aitk/
88
#
9-
# **************************************************
9+
# *******************************************************
1010

1111
"""
1212
aitk setup
@@ -16,35 +16,38 @@
1616

1717
import setuptools
1818

19-
HERE = os.path.abspath(os.path.dirname(__file__))
20-
21-
# The name of the project
2219
name = "aitk"
2320

24-
2521
with open("README.md", "r") as fh:
2622
long_description = fh.read()
2723

2824
setup_args = dict(
2925
name=name,
30-
version="1.0.0",
26+
version="1.0.1",
3127
url="https://github.com/ArtificialIntelligenceToolkit/%s" % name,
3228
author="Douglas Blank",
3329
description="Python tools for AI",
3430
long_description=long_description,
3531
long_description_content_type="text/markdown",
36-
install_requires=["aitk.robots", "aitk.networks", "aitk.utils"],
32+
install_requires=[
33+
"aitk.robots>=0.7.4",
34+
"aitk.networks>=0.2.4",
35+
"aitk.utils>=0.0.4"
36+
],
3737
python_requires=">=3.6",
3838
license="BSD-3-Clause",
3939
platforms="Linux, Mac OS X, Windows",
40-
keywords=["robot", "simulator", "jupyter", "python"],
40+
keywords=["ai", "artificial intelligence", "robots",
41+
"simulator", "jupyter", "python", "machine learning",
42+
"neural networks", "keras", "tensorflow"],
4143
classifiers=[
4244
"License :: OSI Approved :: BSD License",
4345
"Programming Language :: Python",
4446
"Programming Language :: Python :: 3",
4547
"Programming Language :: Python :: 3.6",
4648
"Programming Language :: Python :: 3.7",
4749
"Programming Language :: Python :: 3.8",
50+
"Programming Language :: Python :: 3.9",
4851
"Framework :: Jupyter",
4952
],
5053
)

0 commit comments

Comments
 (0)