forked from cinfony/cinfony
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (42 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#-*. coding: utf-8 -*-
"""cinfony: a common API to several cheminformatics toolkits
cinfony is a Python library that provides a common API to several
open source cheminformatics toolkits.
"""
doclines = __doc__.split("\n")
# My code is BSD
# Open Babel is GPL v2
# OPSIN is Artistic License v2.0 (not viral)
# CDK is LGPL (not viral)
# RDKit is BSD
# Indigo is GPL v3
# Chosen from http://www.python.org/pypi?:action=list_classifiers
classifiers = """\
Development Status :: 5 - Production/Stable
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: OSI Approved :: BSD License
License :: OSI Approved :: GNU General Public License (GPL)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering :: Chemistry
Topic :: Software Development :: Libraries :: Python Modules
"""
from distutils.core import setup
setup(
name = "cinfony",
version = "1.2",
url = "http://cinfony.googlecode.com",
author = "Noel O'Boyle, Adrià Cereto-Massagué",
author_email = "[email protected]",
maintainer = "Noel O'Boyle",
maintainer_email = "[email protected]",
license = "BSD",
description = doclines[0],
long_description = "\n".join(doclines[2:]),
classifiers = filter(None, classifiers.split("\n")),
platforms = ["Any."],
packages = ['cinfony'],
)