setup.py 709 Bytes
Newer Older
Kittipong Maneewong's avatar
Kittipong Maneewong committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
#!/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",
    ],
)