from distutils.core import setup

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

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

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

    # Packages
    packages=["myapp"],

    # Include additional files into the package
    include_package_data=True,

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

    #
    # license="LICENSE.txt",
    description="Useful towel-related stuff.",

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

    # Dependent packages (distributions)
    #install_requires=[],
)