|
Revision 55, 0.9 kB
(checked in by mk, 7 years ago)
|
Created functional tests directory and moved all existing unit tests to separate directory.
|
| Line | |
|---|
| 1 |
#! /usr/bin/env python |
|---|
| 2 |
import sys |
|---|
| 3 |
import os |
|---|
| 4 |
|
|---|
| 5 |
from setuptools import setup |
|---|
| 6 |
from pkg_resources import require |
|---|
| 7 |
|
|---|
| 8 |
# Instruct nose to use doctests. |
|---|
| 9 |
os.environ['NOSE_WITH_DOCTEST'] = 'True' |
|---|
| 10 |
os.environ['NOSE_DOCTEST_TESTS'] = 'True' |
|---|
| 11 |
os.environ['NOSE_INCLUDE'] = 'unit' |
|---|
| 12 |
|
|---|
| 13 |
setup( |
|---|
| 14 |
name = 'Cheesecake', |
|---|
| 15 |
version = '0.1', |
|---|
| 16 |
|
|---|
| 17 |
# metadata for upload to PyPI |
|---|
| 18 |
author = "Grig Gheorghiu and Michal Kwiatkowski", |
|---|
| 19 |
author_email = "grig@gheorghiu.net and ruby@joker.linuxstuff.pl", |
|---|
| 20 |
description = 'Computes "goodness" index for Python packages based on various empirical "kwalitee" factors', |
|---|
| 21 |
license = "PSF", |
|---|
| 22 |
keywords = "cheesecake quality index kwalitee cheeseshop pypi", |
|---|
| 23 |
url = "http://pycheesecake.org/", |
|---|
| 24 |
|
|---|
| 25 |
packages = ['cheesecake', |
|---|
| 26 |
], |
|---|
| 27 |
scripts = ['cheesecake_index', |
|---|
| 28 |
], |
|---|
| 29 |
test_suite = 'nose.collector', |
|---|
| 30 |
) |
|---|