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

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

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

Contributors (1)