-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (22 loc) · 756 Bytes
/
setup.py
File metadata and controls
29 lines (22 loc) · 756 Bytes
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
#! /usr/bin/python
import sys
from distutils.core import setup
import glob
import os
import operator
# the setup itself
set = setup(
name = 'oasa',
version = '0.13.1',
description = "OASA is a free cheminformatics library written in Python",
author = "Beda Kosata",
author_email = "beda@zirael.org",
url = "http://bkchem.zirael.org/oasa_en.html",
license = "GNU GPL",
platforms = ["Unix", "Windows", "hopefully other OSes able to run Python"],
long_description = "OASA is a free cheminformatics library written in Python",
packages=[ 'oasa', 'oasa/graph'],
#data_files=[ ('oasa', glob.glob( 'oasa/templates/*.cdml')+glob.glob('templates/*.xml')),
#windows=['oasa'],
#options = {"py2exe": {"packages": ["encodings"]}}
)