mirror of
https://github.com/pisilinux-3/piksemel3.git
synced 2026-07-30 18:59:04 +00:00
fix files
This commit is contained in:
+14
@@ -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")
|
||||
@@ -14,7 +14,10 @@ import os
|
||||
import glob
|
||||
import shutil
|
||||
import subprocess
|
||||
try:
|
||||
from setuptools import setup, Extension
|
||||
except ImportError:
|
||||
from distutils.core import setup, Extension
|
||||
|
||||
version = '2.0a1'
|
||||
|
||||
@@ -66,7 +69,6 @@ setup(
|
||||
author='TUBITAK/UEKAE, Safa Arıman, Erdem Ersoy, Ersoy Kardesler',
|
||||
description='Python XML API based on the iksemel library',
|
||||
long_description=open('README.md').read(),
|
||||
long_description_content_type='text/markdown',
|
||||
ext_modules=[
|
||||
Extension(
|
||||
'piksemel',
|
||||
@@ -74,7 +76,7 @@ setup(
|
||||
extra_compile_args=["-fvisibility=hidden"]
|
||||
)
|
||||
],
|
||||
python_requires='>=3.6',
|
||||
zip_safe=False,
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
|
||||
Reference in New Issue
Block a user