aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 80ac5bd..b94684e 100644
--- a/setup.py
+++ b/setup.py
@@ -7,12 +7,13 @@ setup(
version='0.1',
description='A synchronized Tausworthe RNG for Python and R',
license='GPL v2',
- py_modules=['SyncRNG'],
+ package_dir={'': 'Python'},
+ packages=[''],
ext_modules=[
Extension(
"syncrng",
define_macros=[('TARGETPYTHON', '1')],
- sources=["syncrng.c"]
+ sources=["src/syncrng.c"]
)
],
)