12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
-
-
- from setuptools import setup
- from setuptools import find_packages
- from os import path
-
- here = path.abspath(path.dirname(__file__))
-
- install_requires = [
-
-
- 'bottle',
- 'marshmallow',
- 'apispec',
- ]
- tests_require = [
- 'pytest',
- ]
-
- setup(
- name='hapic',
-
-
-
-
- version='0.4.2',
-
- description='HTTP api input/output manager',
-
- long_description='',
-
-
- url='http://gitlab.algoo.fr:10080/algoo/hapic.git',
-
-
- author='Algoo Development Team',
- author_email='contact@algoo.fr',
-
-
- license='',
-
-
- keywords='http api validation',
-
-
-
- packages=find_packages(exclude=['contrib', 'docs', 'tests']),
-
-
-
-
-
-
-
-
-
- install_requires=install_requires,
-
-
-
-
-
- extras_require={
- 'test': tests_require,
- },
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- entry_points={},
-
- setup_requires=[],
- tests_require=tests_require,
- )
|