aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-14 17:23:56 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2021-01-14 17:23:56 +0000
commitd49bf79e4b79b3bb3d9031c7fba4c21efc431548 (patch)
tree5d2b35944af343f15ecb7dbd3e74f91a95ca2c3f /setup.py
parentUpdate README (diff)
parentbump roxygen (diff)
downloadSyncRNG-d49bf79e4b79b3bb3d9031c7fba4c21efc431548.tar.gz
SyncRNG-d49bf79e4b79b3bb3d9031c7fba4c21efc431548.zip
Merge branch 'R'
# Conflicts: # .gitignore # README.md # new_R/src/syncrng.c
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py19
1 files changed, 0 insertions, 19 deletions
diff --git a/setup.py b/setup.py
deleted file mode 100644
index 985c1eb..0000000
--- a/setup.py
+++ /dev/null
@@ -1,19 +0,0 @@
-
-from distutils.core import setup, Extension
-
-setup(
- name='SyncRNG',
- author='Gertjan van den Burg',
- version='1.0',
- description='A synchronized Tausworthe RNG for Python and R',
- license='GPL v2',
- package_dir={'': 'Python'},
- packages=[''],
- ext_modules=[
- Extension(
- "syncrng",
- define_macros=[('TARGETPYTHON', '1')],
- sources=["src/syncrng.c"]
- )
- ],
- )