setup.py
changeset 0 40c8f766c9b8
equal deleted inserted replaced
-1:000000000000 0:40c8f766c9b8
       
     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