~ubuntu-branches/ubuntu/wily/cinfony/wily

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Debichem Team
  • Date: 2013-05-20 14:25:39 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: package-import@ubuntu.com-20130520142539-1s6n40lz2xa1dw0s
Tags: upstream-1.2
Import upstream version 1.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#-*. coding: utf-8 -*-
1
2
"""cinfony: a common API to several cheminformatics toolkits
2
3
 
3
4
cinfony is a Python library that provides a common API to several
31
32
from distutils.core import setup
32
33
setup(
33
34
    name = "cinfony",
34
 
    version = "1.1",
 
35
    version = "1.2",
35
36
    url = "http://cinfony.googlecode.com",
36
 
    author = "Noel O'Boyle",
 
37
    author = "Noel O'Boyle, Adrià Cereto-Massagué",
37
38
    author_email = "baoilleach@gmail.com",
38
39
    maintainer = "Noel O'Boyle",
39
40
    maintainer_email = "baoilleach@gmail.com",
40
41
    license = "BSD",
41
42
    description = doclines[0],
42
 
    long_description = "\n".join(doclines[2:]),      
 
43
    long_description = "\n".join(doclines[2:]),
43
44
    classifiers = filter(None, classifiers.split("\n")),
44
45
    platforms = ["Any."],
45
46
    packages = ['cinfony'],