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 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.33 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.33 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
# -*- coding: utf-8 -*-
# ****************************************************************
# aitk.algorithms: Algorithms for AI
#
# Copyright (c) 2021 AITK Developers
#
# https://github.com/ArtificialIntelligenceToolkit/aitk.algorithms
#
# ****************************************************************
import setuptools
name = "aitk.algorithms"
version = "2.0.0"
long_description = """
# aitk.algorithms
DEPRECATED PACKAGE: use `aitk` instead.
"""
print(long_description)
setup_args = dict(
name=name,
version=version,
url="https://github.com/ArtificialIntelligenceToolkit/%s" % name,
author="Lisa Meeden",
description="General Algorithms for AI",
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=["ai", "algorithms", "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",
],
)
if __name__ == "__main__":
setuptools.setup(**setup_args)