-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (28 loc) · 1.11 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
#!/usr/bin/env python
import os
from distutils.core import setup, Extension
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "smilez",
version = "1.0",
description = "A compressor and decompressor library for cheminformatics SMILES strings",
keywords = "cheminformatics SMILES compression",
author = "Andrew Dalke",
author_email = "[email protected]",
url = "https://bitbucket.org/dalke/smilez",
license = "BSD",
long_description = read("README"),
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Programming Language :: Python :: 2 :: Only",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
],
ext_modules = [Extension("smilez", ["smilez_python.c"],
include_dirs = ["."]) ]
)