This repository was archived by the owner on Aug 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (43 loc) · 1.35 KB
/
setup.py
File metadata and controls
47 lines (43 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
# **************************************************
# aitk.robots: Python robot simulator
#
# Copyright (c) 2021 ArtificialIntelligenceToolkit
#
# https://github.com/ArtificialIntelligenceToolkit/
#
# **************************************************
import setuptools
name = "aitk.robots"
version = "2.0.0"
long_description = """
# aitk.robots
DEPRECATED PACKAGE: use `aitk` instead.
"""
print(long_description)
setup_args = dict(
name=name,
version=version,
url="https://github.com/ArtificialIntelligenceToolkit/%s" % name,
author="Douglas Blank",
description="A lightweight Python Robot simulator",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=["aitk"],
python_requires=">=3.6",
license="BSD-3-Clause",
platforms="Linux, Mac OS X, Windows",
keywords=["robot", "simulator", "jupyter", "python"],
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",
],
)
if __name__ == "__main__":
setuptools.setup(**setup_args)