| author | rbernard |
| Wed, 20 Jan 2010 20:45:52 +0100 | |
| changeset 105 | f2ba05546abc |
| parent 0 | 40c8f766c9b8 |
| permissions | -rw-r--r-- |
| 0 | 1 |
from setuptools import setup, find_packages |
2 |
||
3 |
setup( |
|
4 |
name = "comt", |
|
5 |
version = "2.0-alpha1", |
|
6 |
url = 'http://www.co-ment.org', |
|
7 |
license = 'AGPL3', |
|
8 |
description = "Web-based Text Annotation Application.", |
|
9 |
author = 'Sopinspace', |
|
10 |
author_email = 'dev@sopinspace.com', |
|
11 |
packages = find_packages('src'), |
|
12 |
package_dir = {'': 'src'}, |
|
13 |
install_requires = ['setuptools'], |
|
14 |
) |
|
15 |