Repository URL to install this package:
|
Version:
0.7.2 ▾
|
inventory
/
setup.py
|
|---|
"""Inventory service setup.py"""
from glob import glob
from os.path import basename
from os.path import splitext
from setuptools import find_packages
from setuptools import setup
def readme():
"""Long form readme for the inventory service."""
with open('README.md') as readme_file:
return readme_file.read()
setup(
name='inventory',
version='0.7.2',
description='The inventory service for Ocelot, as a Python package.',
long_description=readme(),
keywords='ocelot inventory service rest api',
url='http://github.com/ocelot-saas/inventory',
author='Horia Coman',
author_email='horia141@gmail.com',
license='All right reserved',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
install_requires=[
# Duplicated from requirements.txt file.
'clock==0.0.5',
'falcon>=1,<2',
'falcon-cors>=1,<2',
'gunicorn>=19,<20',
'identity>=1,<2',
'inflection>=0,<1',
'jsonschema>=2,<3',
'phonenumbers>=7,<8',
'psycopg2>=2,<3',
'python-slugify>=1,<2',
'pytz==2016.4',
'sqlalchemy>=1,<2',
'validate_email>=1,<2',
'yoyo-migrations>=5,<6'
],
test_suite='tests',
tests_require=[
# Duplicated from requirements.txt.
'coverage>=4,<5',
'coveralls>=1,<2',
'mockito>=0,<1',
],
include_package_data=True,
zip_safe=False
)