You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.py 2.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. # -*- coding: utf-8 -*-
  2. import os
  3. from setuptools import setup
  4. from setuptools import find_packages
  5. here = os.path.abspath(os.path.dirname(__file__))
  6. try:
  7. README = open(os.path.join(here, 'README.rst')).read()
  8. except IOError:
  9. README = ''
  10. try:
  11. CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
  12. except IOError:
  13. CHANGES = ''
  14. version = '0.0.1dev'
  15. install_requires = [
  16. 'Kotti>=1.3.0',
  17. 'kotti_tinymce',
  18. ]
  19. tests_require = [
  20. 'pytest-cov',
  21. 'pytest-pep8',
  22. 'mock',
  23. 'webtest',
  24. ]
  25. setup(
  26. name='kotti_ai',
  27. version=version,
  28. description="A Kotti addon generated with cookiecutter",
  29. long_description='\n\n'.join([README, CHANGES]),
  30. classifiers=[
  31. 'Development Status :: 3 - Alpha',
  32. # 'Development Status :: 4 - Beta',
  33. # 'Development Status :: 5 - Production/Stable',
  34. 'Environment :: Web Environment',
  35. 'Framework :: Pylons',
  36. 'Framework :: Pyramid',
  37. 'License :: Repoze Public License',
  38. 'Operating System :: POSIX',
  39. 'Operating System :: Unix',
  40. 'Programming Language :: JavaScript',
  41. 'Programming Language :: Python',
  42. 'Programming Language :: Python :: 3',
  43. 'Programming Language :: Python :: 3.3',
  44. 'Programming Language :: Python :: 3.4',
  45. 'Programming Language :: Python :: 3.5',
  46. 'Programming Language :: Python :: 3.6',
  47. 'Topic :: Internet',
  48. 'Topic :: Internet :: WWW/HTTP',
  49. 'Topic :: Internet :: WWW/HTTP :: WSGI',
  50. 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
  51. ],
  52. author='',
  53. author_email='',
  54. url='https://github.com//kotti_ai',
  55. keywords='kotti web cms wcms pylons pyramid sqlalchemy bootstrap',
  56. license="BSD-derived (http://www.repoze.org/LICENSE.txt)",
  57. packages=find_packages(),
  58. include_package_data=True,
  59. zip_safe=False,
  60. install_requires=install_requires,
  61. tests_require=[],
  62. dependency_links=[],
  63. entry_points={
  64. 'fanstatic.libraries': [
  65. 'kotti_ai = kotti_ai.fanstatic:library',
  66. ],
  67. },
  68. extras_require={
  69. 'tests': tests_require,
  70. },
  71. )

kotti_ai是AI+互联网企业级应用软件包,通过web技术,将基于飞桨Paddle Serving框架和 MindSpore Serving的AI应用更好的呈现出来,解决AI实际部署落地难、AI技术提供商与最终用户互通难的问题,实现AI部署、落地、上线以及推广一条龙解决方案!

Contributors (1)