|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# ************************************************** |
| 3 | +# aitk: Python tools for AI |
| 4 | +# |
| 5 | +# Copyright (c) 2021 ArtificialIntelligenceToolkit |
| 6 | +# |
| 7 | +# https://github.com/ArtificialIntelligenceToolkit/aitk/ |
| 8 | +# |
| 9 | +# ************************************************** |
| 10 | + |
| 11 | +""" |
| 12 | +aitk setup |
| 13 | +""" |
| 14 | +import io |
| 15 | +import os |
| 16 | + |
| 17 | +import setuptools |
| 18 | + |
| 19 | +HERE = os.path.abspath(os.path.dirname(__file__)) |
| 20 | + |
| 21 | +# The name of the project |
| 22 | +name = "aitk" |
| 23 | + |
| 24 | + |
| 25 | +with open("README.md", "r") as fh: |
| 26 | + long_description = fh.read() |
| 27 | + |
| 28 | +setup_args = dict( |
| 29 | + name=name, |
| 30 | + version="1.0.0", |
| 31 | + url="https://github.com/ArtificialIntelligenceToolkit/%s" % name, |
| 32 | + author="Douglas Blank", |
| 33 | + description="Python tools for AI", |
| 34 | + long_description=long_description, |
| 35 | + long_description_content_type="text/markdown", |
| 36 | + install_requires=["aitk.robots", "aitk.networks", "aitk.utils"], |
| 37 | + python_requires=">=3.6", |
| 38 | + license="BSD-3-Clause", |
| 39 | + platforms="Linux, Mac OS X, Windows", |
| 40 | + keywords=["robot", "simulator", "jupyter", "python"], |
| 41 | + classifiers=[ |
| 42 | + "License :: OSI Approved :: BSD License", |
| 43 | + "Programming Language :: Python", |
| 44 | + "Programming Language :: Python :: 3", |
| 45 | + "Programming Language :: Python :: 3.6", |
| 46 | + "Programming Language :: Python :: 3.7", |
| 47 | + "Programming Language :: Python :: 3.8", |
| 48 | + "Framework :: Jupyter", |
| 49 | + ], |
| 50 | +) |
| 51 | + |
| 52 | +if __name__ == "__main__": |
| 53 | + setuptools.setup(**setup_args) |
0 commit comments