Skip to content

Commit

Permalink
Clean up code. Bump version 0.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
heiseish committed Aug 9, 2020
1 parent c5e388c commit 4fe4ff7
Show file tree
Hide file tree
Showing 11 changed files with 11,184 additions and 18,822 deletions.
2 changes: 1 addition & 1 deletion kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
import sys
import signal
from ktlib import arg_parse, color_red, color_green, exit_gracefully
from src.ktlib import arg_parse, color_red, color_green, exit_gracefully


if __name__ == '__main__':
Expand Down
49 changes: 0 additions & 49 deletions ktlib.pxd

This file was deleted.

7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from distutils.command.sdist import sdist as _sdist
from setuptools import setup, find_packages, Extension
from src.version import version
import pathlib

try:
Expand All @@ -19,8 +20,8 @@

extensions = [
Extension(
"ktlib",
sources=[f"ktlib.{ext}"],
"src.ktlib",
sources=[f"src/ktlib.{ext}"],
extra_compile_args=["-O3", "--std=c++17"],
language="c++"
),
Expand All @@ -36,7 +37,7 @@
name='kttool',
cmdclass=cmdclass,
ext_modules=extensions,
version="0.0.6",
version=version,
description="Kattis command line tool",
long_description=README,
long_description_content_type="text/markdown",
Expand Down
Empty file added src/__init__.py
Empty file.
Loading

0 comments on commit 4fe4ff7

Please sign in to comment.