Skip to content

Commit

Permalink
Release v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
oysstu committed Sep 15, 2022
1 parent 30f156d commit 97eba4a
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import hashlib
import os
import sys
import platform
import subprocess
import shutil
import hashlib
import subprocess
import sys

from setuptools import setup, Extension
from setuptools import Extension
from setuptools import setup
from setuptools.command.build_ext import build_ext

from utils.generate_bindings import IMCPybind, IMCPyi
from utils.generate_bindings import IMCPybind
from utils.generate_bindings import IMCPyi


class CMakeExtension(Extension):
Expand Down Expand Up @@ -127,7 +129,7 @@ def build_extension(self, ext):

setup(
name='imcpy',
version='1.0.6',
version='1.0.7',
author='Oystein Sture',
author_email='[email protected]',
description='Python bindings for DUNE-IMC',
Expand All @@ -146,10 +148,10 @@ def build_extension(self, ext):
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
],
packages=['imcpy',
'imcpy.actors',
'imcpy.algorithms',
'imcpy.coordinates',
packages=['imcpy',
'imcpy.actors',
'imcpy.algorithms',
'imcpy.coordinates',
'imcpy.network',
'utils'],
python_requires='>=3.6',
Expand Down

0 comments on commit 97eba4a

Please sign in to comment.