fix files

This commit is contained in:
Erkan IŞIK
2025-10-10 00:37:01 +03:00
parent 9e1f1c2870
commit f5744a2b70
2 changed files with 19 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
#
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import pisitools
def install():
pythonmodules.install(pyVer="3")
pisitools.dodoc("README")
+5 -3
View File
@@ -14,7 +14,10 @@ import os
import glob import glob
import shutil import shutil
import subprocess import subprocess
from setuptools import setup, Extension try:
from setuptools import setup, Extension
except ImportError:
from distutils.core import setup, Extension
version = '2.0a1' version = '2.0a1'
@@ -66,7 +69,6 @@ setup(
author='TUBITAK/UEKAE, Safa Arıman, Erdem Ersoy, Ersoy Kardesler', author='TUBITAK/UEKAE, Safa Arıman, Erdem Ersoy, Ersoy Kardesler',
description='Python XML API based on the iksemel library', description='Python XML API based on the iksemel library',
long_description=open('README.md').read(), long_description=open('README.md').read(),
long_description_content_type='text/markdown',
ext_modules=[ ext_modules=[
Extension( Extension(
'piksemel', 'piksemel',
@@ -74,7 +76,7 @@ setup(
extra_compile_args=["-fvisibility=hidden"] extra_compile_args=["-fvisibility=hidden"]
) )
], ],
python_requires='>=3.6', zip_safe=False,
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Intended Audience :: Developers',