setup.py 711 Bytes
#!/usr/bin/env python
from setuptools import find_packages, setup

project = "phuengtonchu"
version = "0.1.0"

setup(
    name=project,
    version=version,
    description="phuengtonchu python library",
    author="phuengtonchu",
    author_email="phuengton.ch.57@ubu.ac.th",
    url="https://github.com/phuengtonchu/phuengtonchu",
    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",
    ],
)