#from distutils.core import setup
from setuptools import setup

setup(
    # Application name:
    name="common-lib",

    # Project description
    description='common lib example',
    long_description='full ci flow for common lib in YellowRoad',

    # Keywords that describe the project
    keywords="sample setuptools development",

    # Version number (initial):
    version="0.1.1",

    # Application author details:
    author="oren razon",
    author_email="oren.razon@myyellowroad.com",

    # Packages
    packages=["yr_math"],

    # Include additional files into the package
    #include_package_data=True,

    # Details
    url="http://pypi.python.org/pypi/MyApplication_v010/",

    #
    # license="LICENSE.txt",

    # long_description=open("README.txt").read(),

    # Dependent packages (distributions)
    python_requires='>=3.3',
)