diff options
author | Diego Roversi <diegor@tiscali.it> | 2019-09-08 18:12:27 +0200 |
---|---|---|
committer | Diego Roversi <diegor@tiscali.it> | 2019-09-08 18:12:27 +0200 |
commit | 1d9925c287b318ec21343e2682b51ab6a36ae8db (patch) | |
tree | 17d1c0ac21eea6f291146520afa8381db4586fb4 /bubbob/setup.py |
initial commit from cvs 1.6.2
Diffstat (limited to 'bubbob/setup.py')
-rwxr-xr-x | bubbob/setup.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/bubbob/setup.py b/bubbob/setup.py new file mode 100755 index 0000000..577d3c5 --- /dev/null +++ b/bubbob/setup.py @@ -0,0 +1,22 @@ +#! /usr/bin/env python + +from distutils.core import setup +from distutils.extension import Extension + +##setup ( name="gencopy", +## version="0.1", +## description="generator and iterator state", +## author="Armin", +## author_email="arigo@tunes.org", +## ext_modules=[Extension(name = 'gencopy', +## sources = ['gencopy.c'])] +## ) + +setup ( name="statesaver", + version="0.1", + description="object duplicator working on generators and iterators", + author="Armin", + author_email="arigo@tunes.org", + ext_modules=[Extension(name = 'statesaver', + sources = ['statesaver.c'])] + ) |