diff options
| author | Louis Burda <quent.burda@gmail.com> | 2025-01-17 23:45:00 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2025-01-17 23:45:00 +0100 |
| commit | 48cb64edfa5bcbd9485bbeda453549f216eed2a7 (patch) | |
| tree | 9c7268e9dddf051fe747902eac800a5dba277731 /server/setup.py | |
| download | nullcon2023-spygame-master.tar.gz nullcon2023-spygame-master.zip | |
Diffstat (limited to 'server/setup.py')
| -rw-r--r-- | server/setup.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/server/setup.py b/server/setup.py new file mode 100644 index 0000000..ecc91e6 --- /dev/null +++ b/server/setup.py @@ -0,0 +1,12 @@ +from distutils.core import setup, Extension + +def main(): + setup(name="spy", + version="1.0.0", + description="Spy Game Module", + author="Louis Burda", + author_email="quent.burda@gmail.com", + ext_modules=[Extension("spy", ["spymodule.c"])]) + +if __name__ == "__main__": + main() |
