From bb18a9c82641faf8306051f50ccf800be6874e36 Mon Sep 17 00:00:00 2001 From: q-posev Date: Thu, 5 Aug 2021 17:48:53 +0300 Subject: [PATCH] minor cleaning --- python/setup.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/python/setup.py b/python/setup.py index dc6512c..29ae023 100644 --- a/python/setup.py +++ b/python/setup.py @@ -4,16 +4,12 @@ setup.py file for pytrexio """ -#from distutils.core import setup, Extension from setuptools import setup, Extension, find_packages import os rootpath = os.path.dirname(os.path.abspath(__file__)) srcpath = os.path.join(rootpath, 'src') c_files = ['trexio.c', 'trexio_hdf5.c', 'trexio_text.c', 'pytrexio_wrap.c'] -h_files = ['trexio.h', 'trexio_hdf5.h', 'trexio_text.h', 'trexio_s.h', 'trexio_private.h'] - -# setup.py does not copy all with open("README.md", "r") as fh: long_description = fh.read()