|
1 | 1 | # -*- coding: utf-8 -*- |
2 | | -# ************************************************** |
| 2 | +# ******************************************************* |
3 | 3 | # aitk: Python tools for AI |
4 | 4 | # |
5 | | -# Copyright (c) 2021 ArtificialIntelligenceToolkit |
| 5 | +# Copyright (c) 2021 AITK Developers |
6 | 6 | # |
7 | 7 | # https://github.com/ArtificialIntelligenceToolkit/aitk/ |
8 | 8 | # |
9 | | -# ************************************************** |
| 9 | +# ******************************************************* |
10 | 10 |
|
11 | 11 | """ |
12 | 12 | aitk setup |
|
16 | 16 |
|
17 | 17 | import setuptools |
18 | 18 |
|
19 | | -HERE = os.path.abspath(os.path.dirname(__file__)) |
20 | | - |
21 | | -# The name of the project |
22 | 19 | name = "aitk" |
23 | 20 |
|
24 | | - |
25 | 21 | with open("README.md", "r") as fh: |
26 | 22 | long_description = fh.read() |
27 | 23 |
|
28 | 24 | setup_args = dict( |
29 | 25 | name=name, |
30 | | - version="1.0.0", |
| 26 | + version="1.0.1", |
31 | 27 | url="https://github.com/ArtificialIntelligenceToolkit/%s" % name, |
32 | 28 | author="Douglas Blank", |
33 | 29 | description="Python tools for AI", |
34 | 30 | long_description=long_description, |
35 | 31 | 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 | + ], |
37 | 37 | python_requires=">=3.6", |
38 | 38 | license="BSD-3-Clause", |
39 | 39 | 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"], |
41 | 43 | classifiers=[ |
42 | 44 | "License :: OSI Approved :: BSD License", |
43 | 45 | "Programming Language :: Python", |
44 | 46 | "Programming Language :: Python :: 3", |
45 | 47 | "Programming Language :: Python :: 3.6", |
46 | 48 | "Programming Language :: Python :: 3.7", |
47 | 49 | "Programming Language :: Python :: 3.8", |
| 50 | + "Programming Language :: Python :: 3.9", |
48 | 51 | "Framework :: Jupyter", |
49 | 52 | ], |
50 | 53 | ) |
|
0 commit comments