Skip to content

Commit

Permalink
Bring versions up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
dsblank committed Mar 5, 2021
1 parent 12883b1 commit f1aabef
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# -*- coding: utf-8 -*-
# **************************************************
# *******************************************************
# aitk: Python tools for AI
#
# Copyright (c) 2021 ArtificialIntelligenceToolkit
# Copyright (c) 2021 AITK Developers
#
# https://github.com/ArtificialIntelligenceToolkit/aitk/
#
# **************************************************
# *******************************************************

"""
aitk setup
Expand All @@ -16,35 +16,38 @@

import setuptools

HERE = os.path.abspath(os.path.dirname(__file__))

# The name of the project
name = "aitk"


with open("README.md", "r") as fh:
long_description = fh.read()

setup_args = dict(
name=name,
version="1.0.0",
version="1.0.1",
url="https://github.com/ArtificialIntelligenceToolkit/%s" % name,
author="Douglas Blank",
description="Python tools for AI",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["aitk.robots", "aitk.networks", "aitk.utils"],
install_requires=[
"aitk.robots>=0.7.4",
"aitk.networks>=0.2.4",
"aitk.utils>=0.0.4"
],
python_requires=">=3.6",
license="BSD-3-Clause",
platforms="Linux, Mac OS X, Windows",
keywords=["robot", "simulator", "jupyter", "python"],
keywords=["ai", "artificial intelligence", "robots",
"simulator", "jupyter", "python", "machine learning",
"neural networks", "keras", "tensorflow"],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Jupyter",
],
)
Expand Down

0 comments on commit f1aabef

Please sign in to comment.