1
#! /usr/bin/env python3
2
3
from distutils.core import setup, Extension
4
5
pbc = Extension(	"pypbc",
6
				libraries=["pbc"],
7
				sources=["pypbc.c"]
8
			)
9
10
setup(	name="pypbc",
11
		version="0.0",
12
		description="a simple set of bindings to PBC's interface.",
13
		author="Geremy Condra",
14
		author_email="debatem1@gmail.com",
15
		url="geremycondra.net",
16
		py_modules=["test", "KSW"],
17
		ext_modules=[pbc]
18
)