#!/usr/bin/env python from setuptools import find_packages, setup project = "Quiz01" version = "0.1.0" setup( name=project, version=version, description="Kittipong python library", author="Kittipong59110440039", author_email="kittipong.ma.59@ubu.ac.th", url="https://github.com/Kittipong Maneewong/Quiz", packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]), include_package_data=True, zip_safe=False, install_requires=[ ], setup_requires=[ "nose>=1.3.6", ], dependency_links=[ ], entry_points={ }, tests_require=[ "coverage>=3.7.1", "mock>=1.0.1", "PyHamcrest>=1.8.5", ], )