|
Revision 2, 0.7 kB
(checked in by grig, 7 years ago)
|
Initial import
|
| Line | |
|---|
| 1 |
#! /usr/bin/env python |
|---|
| 2 |
import sys |
|---|
| 3 |
import os.path |
|---|
| 4 |
|
|---|
| 5 |
from setuptools import setup |
|---|
| 6 |
from pkg_resources import require |
|---|
| 7 |
|
|---|
| 8 |
setup( |
|---|
| 9 |
name = 'Cheesecake', |
|---|
| 10 |
version = '0.1', |
|---|
| 11 |
|
|---|
| 12 |
# metadata for upload to PyPI |
|---|
| 13 |
author = "Grig Gheorghiu", |
|---|
| 14 |
author_email = "grig@gheorghiu.net", |
|---|
| 15 |
description = 'Computes "goodness" index for Python packages based on various empirical "kwalitee" factors', |
|---|
| 16 |
license = "PSF", |
|---|
| 17 |
keywords = "cheesecake quality index kwalitee cheeseshop pypi", |
|---|
| 18 |
url = "http://tracos.org/cheesecake", |
|---|
| 19 |
|
|---|
| 20 |
packages = ['cheesecake', |
|---|
| 21 |
], |
|---|
| 22 |
scripts = ['cheesecake_index', |
|---|
| 23 |
], |
|---|
| 24 |
test_suite = 'nose.collector', |
|---|
| 25 |
) |
|---|