-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.39 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
from Cython.Build import cythonize
setup(
ext_modules=cythonize(["DataStructure/*.pyx",
"DataStructure/Cache/*.pyx",
"DataStructure/Cache/*.pxd",
"DataStructure/Tree/*.pyx",
"DataStructure/Tree/*.pxd",
"DataStructure/Heap/*.pyx",
"DataStructure/Heap/*.pxd"
],
compiler_directives={'language_level' : "3"}),
name='NlpToolkit-DataStructure-Cy',
version='1.0.12',
packages=['DataStructure', 'DataStructure.Cache', 'DataStructure.Tree', 'DataStructure.Heap'],
package_data={'DataStructure': ['*.pxd', '*.pyx', '*.c'],
'DataStructure.Cache': ['*.pxd', '*.pyx', '*.c'],
'DataStructure.Tree': ['*.pxd', '*.pyx', '*.c'],
'DataStructure.Heap': ['*.pxd', '*.pyx', '*.c']},
url='https://github.com/StarlangSoftware/DataStructure-Cy',
license='',
author='olcaytaner',
author_email='[email protected]',
description='Simple Data Structures Library',
long_description=long_description,
long_description_content_type='text/markdown'
)